From 4c36742ec8072e645f0b755cdf5e9582ac2a6887 Mon Sep 17 00:00:00 2001 From: xengineering Date: Sat, 11 Feb 2023 18:06:52 +0100 Subject: Rework logging Logging during a request is at the moment not really needed. Printing the config to the log was a stupid idea too. --- config.go | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'config.go') 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 } -- cgit v1.2.3-70-g09d2