summaryrefslogtreecommitdiff
path: root/config.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2023-02-11 18:06:52 +0100
committerxengineering <me@xengineering.eu>2023-02-11 18:06:52 +0100
commit4c36742ec8072e645f0b755cdf5e9582ac2a6887 (patch)
tree7f76889dc1744e8829f957dbe24f6455ab86fa75 /config.go
parent06a09ecebb3e7631044963e374671edf15d61213 (diff)
downloadceres-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.go10
1 files changed, 7 insertions, 3 deletions
diff --git a/config.go b/config.go
index 9302e11..645e347 100644
--- a/config.go
+++ b/config.go
@@ -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
}