diff options
author | xengineering <me@xengineering.eu> | 2024-05-04 20:48:43 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-05-04 20:52:02 +0200 |
commit | 5c248884afa530bafb7b04dc14c587e3029480f6 (patch) | |
tree | 811f48c6c6da6fa837c49bbb38a9f6784e51c118 /main.go | |
parent | 5260a38bab0dd77846318802edeb6a7ecd462a56 (diff) | |
download | ceres-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.go | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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) |