diff options
author | Ben Morrison <ben@gbmor.dev> | 2019-06-10 01:05:35 -0400 |
---|---|---|
committer | Ben Morrison <ben@gbmor.dev> | 2019-06-10 01:05:35 -0400 |
commit | 4648146ad31398aef3f184145a0c9781d31c30cb (patch) | |
tree | 9824e1c41b1eb6abd459658a14880156072e8747 /svc/init.go | |
parent | f86e9b161aff35749e1213cd485d4de7c0da20e6 (diff) | |
download | getwtxt-4648146ad31398aef3f184145a0c9781d31c30cb.tar.gz |
changed some log formatting
Diffstat (limited to 'svc/init.go')
-rw-r--r-- | svc/init.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svc/init.go b/svc/init.go index 6af7866..408a53b 100644 --- a/svc/init.go +++ b/svc/init.go @@ -99,7 +99,7 @@ func watchForInterrupt() { go func() { for sigint := range c { - log.Printf("\n\nCaught %v. Cleaning up ...\n", sigint) + log.Printf("\nCaught %v. Cleaning up ...\n\n", sigint) confObj.Mu.RLock() log.Printf("Closing database connection to %v...\n", confObj.DBPath) |