From 4a79b3dce3b45937e0ee0a7437405beb9047d454 Mon Sep 17 00:00:00 2001 From: wh1te909 Date: Sat, 27 Jan 2024 02:46:11 +0000 Subject: [PATCH] fix log --- agent/agent.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agent/agent.go b/agent/agent.go index 67afef2..a824b69 100644 --- a/agent/agent.go +++ b/agent/agent.go @@ -436,7 +436,7 @@ func (a *Agent) ForceKillMesh() { } for _, pid := range pids { - a.Logger.Debugln("Killing mesh process with pid %d", pid) + a.Logger.Debugln("Killing mesh process with pid:", pid) if err := KillProc(int32(pid)); err != nil { a.Logger.Debugln(err) }