summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-05-04 20:48:43 +0200
committerxengineering <me@xengineering.eu>2024-05-04 20:52:02 +0200
commit5c248884afa530bafb7b04dc14c587e3029480f6 (patch)
tree811f48c6c6da6fa837c49bbb38a9f6784e51c118 /main.go
parent5260a38bab0dd77846318802edeb6a7ecd462a56 (diff)
downloadceres-5c248884afa530bafb7b04dc14c587e3029480f6.tar
ceres-5c248884afa530bafb7b04dc14c587e3029480f6.tar.zst
ceres-5c248884afa530bafb7b04dc14c587e3029480f6.zip
Move storage path logging to main() function
The model package where this used to be implemented should not care too much about logging. Furthermore it is easier to compare the log output with the main() function if the log statements are there.
Diffstat (limited to 'main.go')
-rw-r--r--main.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/main.go b/main.go
index d7d2f10..d0b0be2 100644
--- a/main.go
+++ b/main.go
@@ -37,6 +37,7 @@ func main() {
if !storage.Exists() {
storage.Create()
}
+ log.Printf("Storage directory: %s\n", storage.Path)
storage.Init(gitDescribe)
model.InitDatabase(config.StorageFilePath)