From 596865ede31be91cf352023acc565ff099e32dc2 Mon Sep 17 00:00:00 2001 From: Bel LaPointe <153096461+breel-render@users.noreply.github.com> Date: Sat, 5 Apr 2025 11:06:00 -0600 Subject: [PATCH] noisy log may as well be useful --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 18dfc95..4cb8111 100644 --- a/main.go +++ b/main.go @@ -87,7 +87,7 @@ func Recursive(ctx context.Context) error { } defer os.Chdir(was) - log.Printf("Run(%s, %s, %+v, %+v, %v)", y.O, d, y.P, y.C, y.D) + log.Printf("Run(outd=%s, ind=%s, patterns=%+v, const=%+v, dry=%v)", y.O, d, y.P, y.C, y.D) if err := Run(ctx, y.O, "./", y.P, y.C, y.D); err != nil { return err }