From ed252d8e70bef55724502a19b85f484e2f9236a3 Mon Sep 17 00:00:00 2001 From: h0n9 Date: Thu, 3 Oct 2024 21:29:25 +0900 Subject: [PATCH] chore: Minor update --- cli/tools/loader/loader.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/tools/loader/loader.go b/cli/tools/loader/loader.go index 6b6cce6..88b0f67 100644 --- a/cli/tools/loader/loader.go +++ b/cli/tools/loader/loader.go @@ -53,7 +53,7 @@ func runE(cmd *cobra.Command, args []string) error { defer wg.Done() select { case <-ctx.Done(): - fmt.Printf("cancelled context") + fmt.Println("cancelled context") case s := <-sigCh: fmt.Printf("got signal %v\n", s) fmt.Printf("cancelling ctx ... ")