diff options
author | xengineering <me@xengineering.eu> | 2023-02-11 18:06:52 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2023-02-11 18:06:52 +0100 |
commit | 4c36742ec8072e645f0b755cdf5e9582ac2a6887 (patch) | |
tree | 7f76889dc1744e8829f957dbe24f6455ab86fa75 /config.go | |
parent | 06a09ecebb3e7631044963e374671edf15d61213 (diff) | |
download | ceres-4c36742ec8072e645f0b755cdf5e9582ac2a6887.tar ceres-4c36742ec8072e645f0b755cdf5e9582ac2a6887.tar.zst ceres-4c36742ec8072e645f0b755cdf5e9582ac2a6887.zip |
Rework logging
Logging during a request is at the moment not really needed. Printing
the config to the log was a stupid idea too.
Diffstat (limited to 'config.go')
-rw-r--r-- | config.go | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -2,12 +2,12 @@ package main import ( - "fmt" "log" "flag" "os" "io/ioutil" "encoding/json" + "path/filepath" ) type RuntimeConfig struct { @@ -53,13 +53,17 @@ func GetRuntimeConfig() RuntimeConfig { log.Fatalf("Could not read configuration file %s", config.Path) } - fmt.Print("Used config: " + string(configData) + "\n") - // parse content to config structs err = json.Unmarshal(configData, &config) if err != nil { log.Fatalf("Could not parse configuration file %s", config.Path) } + abs,err := filepath.Abs(config.Path) + if err != nil { + log.Fatalf("Could not translate %s to absolute path.", config.Path) + } + log.Printf("Config file: %s\n", abs) + return config } |