From 84d3e9ce7b027dff31705dd50dc7e16434395bb1 Mon Sep 17 00:00:00 2001 From: maddalax Date: Mon, 23 Sep 2024 16:08:11 -0500 Subject: [PATCH] fixes --- cli/htmgo/tasks/process/process.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/htmgo/tasks/process/process.go b/cli/htmgo/tasks/process/process.go index ee0b011..ab0bf51 100644 --- a/cli/htmgo/tasks/process/process.go +++ b/cli/htmgo/tasks/process/process.go @@ -63,7 +63,7 @@ func KillAll(skipFlag ...RunFlag) { if tries > 50 { args := strings.Join(cmd.cmd.Args, " ") - slog.Debug("process %v is not running after 50 tries, breaking.\n", args) + slog.Debug("process is not running after 50 tries, breaking.", slog.String("command", args)) allFinished = true break } else {