diff options
author | xengineering <me@xengineering.eu> | 2024-05-04 20:28:43 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-05-04 20:52:02 +0200 |
commit | 5260a38bab0dd77846318802edeb6a7ecd462a56 (patch) | |
tree | 86538fb2817ee1ebe0b1f3350f3692885ef83b7c /main.go | |
parent | c6fbbbded8463fc94e5af223246eac97d538a9e5 (diff) | |
download | ceres-5260a38bab0dd77846318802edeb6a7ecd462a56.tar ceres-5260a38bab0dd77846318802edeb6a7ecd462a56.tar.zst ceres-5260a38bab0dd77846318802edeb6a7ecd462a56.zip |
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.
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -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() |