summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-05-04 20:28:43 +0200
committerxengineering <me@xengineering.eu>2024-05-04 20:52:02 +0200
commit5260a38bab0dd77846318802edeb6a7ecd462a56 (patch)
tree86538fb2817ee1ebe0b1f3350f3692885ef83b7c /main.go
parentc6fbbbded8463fc94e5af223246eac97d538a9e5 (diff)
downloadceres-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.go11
1 files 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()