From 33eb9697785d2db327443a93eac13ad60ad3e61c Mon Sep 17 00:00:00 2001 From: PhatPhuckDave Date: Fri, 19 Dec 2025 16:31:09 +0100 Subject: [PATCH] Change log level from Info to Debug for capture groups modification logging --- processor/regex.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/processor/regex.go b/processor/regex.go index 85b9b60..76b97be 100644 --- a/processor/regex.go +++ b/processor/regex.go @@ -223,7 +223,7 @@ func ProcessRegex(content string, command utils.ModifyCommand, filename string) modifiedGroupsCount++ } } - matchLogger.Info("%d of %d capture groups identified for modification", modifiedGroupsCount, len(updatedCaptureGroups)) + matchLogger.Debug("%d of %d capture groups identified for modification", modifiedGroupsCount, len(updatedCaptureGroups)) for _, capture := range updatedCaptureGroups { if capture.Value == capture.Updated {