summaryrefslogtreecommitdiff
path: root/sigtrap_posix.go
diff options
context:
space:
mode:
authorSimão Gomes Viana <accounts@superboring.dev>2021-03-29 19:04:22 +0200
committerGitHub <noreply@github.com>2021-03-29 11:04:22 -0600
commita6bc58153be99a8c3fe81e6ac15260c124776663 (patch)
tree3895ba05c7bc3af6960c553d27bf3a1b1cf2e4ae /sigtrap_posix.go
parent911c8a371aa162d8b82812c3dd0662288fea76e0 (diff)
sigtrap_posix: add missing comma to SIGTERM info (#4078)
Was missing a comma, so added it
Diffstat (limited to 'sigtrap_posix.go')
-rw-r--r--sigtrap_posix.go2
1 files changed, 1 insertions, 1 deletions
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: