diff options
Diffstat (limited to 'svc/init.go')
-rw-r--r-- | svc/init.go | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/svc/init.go b/svc/init.go index aed3449..8e9bb20 100644 --- a/svc/init.go +++ b/svc/init.go @@ -40,6 +40,18 @@ var remoteRegistries = &RemoteRegistries{} var staticCache = &staticAssets{} +func errFatal(context string, err error) { + if err != nil { + log.Fatalf(context+"%v\n", err.Error()) + } +} + +func errLog(context string, err error) { + if err != nil { + log.Printf(context+"%v\n", err.Error()) + } +} + // I'm not using init() because it runs // even during testing and was causing // problems. @@ -92,10 +104,8 @@ func watchForInterrupt() { case *dbLevel: lvl := dbType - if err := lvl.db.Close(); err != nil { - log.Printf("%v\n", err.Error()) - } - + err := lvl.db.Close() + errLog("", err) } if !confObj.StdoutLogging { |