summaryrefslogtreecommitdiff
path: root/config.go
diff options
context:
space:
mode:
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
}