From a6bc58153be99a8c3fe81e6ac15260c124776663 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sim=C3=A3o=20Gomes=20Viana?= Date: Mon, 29 Mar 2021 19:04:22 +0200 Subject: sigtrap_posix: add missing comma to SIGTERM info (#4078) Was missing a comma, so added it --- sigtrap_posix.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sigtrap_posix.go') diff --git a/sigtrap_posix.go b/sigtrap_posix.go index 0e4dda3..d5a03a9 100644 --- a/sigtrap_posix.go +++ b/sigtrap_posix.go @@ -39,7 +39,7 @@ func trapSignalsPosix() { os.Exit(ExitCodeForceQuit) case syscall.SIGTERM: - Log().Info("shutting down apps then terminating", zap.String("signal", "SIGTERM")) + Log().Info("shutting down apps, then terminating", zap.String("signal", "SIGTERM")) exitProcessFromSignal("SIGTERM") case syscall.SIGUSR1: -- cgit v1.2.3