Change log level from Info to Debug for capture groups modification logging

This commit is contained in:
2025-12-19 16:31:09 +01:00
parent 8b8fa70ce4
commit 33eb969778

View File

@@ -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 {