From 22914fe2435b496d54fa8fbf00ec8ce2482cdced Mon Sep 17 00:00:00 2001 From: PhatPhuckDave Date: Fri, 28 Mar 2025 01:24:23 +0100 Subject: [PATCH] Add a lil log --- main.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/main.go b/main.go index a5e27ef..88309b9 100644 --- a/main.go +++ b/main.go @@ -214,5 +214,8 @@ func main() { stats.TotalModifications, stats.ProcessedFiles, stats.ProcessedFiles+stats.FailedFiles) fmt.Printf("Operation complete! Modified %d values in %d/%d files\n", stats.TotalModifications, stats.ProcessedFiles, stats.ProcessedFiles+stats.FailedFiles) + for command, count := range stats.ModificationsPerCommand { + logger.Info("Command %q made %d modifications", command, count) + } } }