summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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()