From 5260a38bab0dd77846318802edeb6a7ecd462a56 Mon Sep 17 00:00:00 2001 From: xengineering Date: Sat, 4 May 2024 20:28:43 +0200 Subject: Add explicit startup / shutdown log messages This makes it easier to read the logs and follows the pattern to move log messages more to the main() function instead of spreading them accross the whole code base. --- main.go | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/main.go b/main.go index da06f8e..d7d2f10 100644 --- a/main.go +++ b/main.go @@ -21,15 +21,18 @@ import ( func main() { flag.Parse() - if config.Path != "" { - config.Read() - } - if printVersion { fmt.Println(gitDescribe) os.Exit(0) } + log.Println("Ceres recipe server started") + defer log.Println("Ceres recipe server stopped") + + if config.Path != "" { + config.Read() + } + storage := model.Storage{Path: config.StorageFilePath} if !storage.Exists() { storage.Create() -- cgit v1.2.3-70-g09d2