Skip to content

Commit 545545f

Browse files
committed
refactor(Logger): change log level from Debug to Info for remove operation
1 parent 817299a commit 545545f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

XMLPatch/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -481,7 +481,7 @@ private static void ApplyReplace(XElement replaceElement, XElement originalRoot)
481481
private static void ApplyRemove(XElement removeElement, XElement originalRoot)
482482
{
483483
string? sel = removeElement.Attribute("sel")?.Value;
484-
Logger.Debug($"Applying remove operation: '{sel}'");
484+
Logger.Info($"Applying remove operation: '{sel}'");
485485
if (sel == null)
486486
{
487487
Logger.Warn("Remove operation missing 'sel' attribute! Skipping operation.");

0 commit comments

Comments
 (0)