From d8ced7e4f07455907fc3f9a15097a2c565963525 Mon Sep 17 00:00:00 2001 From: Daniel Date: Thu, 14 Oct 2021 14:19:01 +0200 Subject: [PATCH] Improve logging --- updates/restart.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/updates/restart.go b/updates/restart.go index 8aeb7f4a..d70486ec 100644 --- a/updates/restart.go +++ b/updates/restart.go @@ -51,7 +51,7 @@ func RestartNow() { func automaticRestart(_ context.Context, _ *modules.Task) error { if restartTriggered.SetToIf(false, true) { - log.Info("updates: initiating automatic restart") + log.Info("updates: initiating (automatic) restart") modules.SetExitStatusCode(RestartExitCode) // Do not use a worker, as this would block itself here. go modules.Shutdown() //nolint:errcheck