diff options
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 } |