From 40226c2984dab2e53e340d7455e2c65d598e1431 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maxi=20Quo=C3=9F?= Date: Wed, 12 Mar 2025 14:06:11 +0100 Subject: [PATCH] fix: change logger warning msg --- backend/networking/shutdown_other.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/networking/shutdown_other.go b/backend/networking/shutdown_other.go index e04fe373..765e7e83 100644 --- a/backend/networking/shutdown_other.go +++ b/backend/networking/shutdown_other.go @@ -18,7 +18,7 @@ func SetProcessAttributes(cmd *exec.Cmd) { // Kills child processes on Linux. Windows doesn't provide a direct way to kill child processes, so we kill just the main process. func KillProcess(process *os.Process) error { - logger.Warning.Println("Your shutdown cmd didn't finish in time. It will be killed.") + logger.Warning.Println("Your command didn't finish in time. It will be killed.") pgid, err := unix.Getpgid(process.Pid) if err != nil { return err