Add a few checks & logging.
authorOllivier Robert <roberto@keltia.net>
Mon, 10 Apr 2017 17:14:56 +0200
changeset 42 2bebcae94ce1
parent 41 79be65ec4afd
child 43 e52d68c19cb0
Add a few checks & logging.
config.go
--- a/config.go	Mon Apr 10 17:11:47 2017 +0200
+++ b/config.go	Mon Apr 10 17:14:56 2017 +0200
@@ -43,18 +43,23 @@
 }
 
 func loadGlobal(file string) (c *Config, err error) {
+	log.Printf("file=%s", file)
 	// Check if there is any config file
-	if _, err := os.Stat(file); err == nil {
-		// Read it
-		buf, err := ioutil.ReadFile(file)
-		if err != nil {
-			return c, fmt.Errorf("Can not read %s", file)
-		}
+	_, err = os.Stat(file)
+	if err != nil {
+		return
+	}
 
-		err = toml.Unmarshal(buf, c)
-		if err != nil {
-			return c, fmt.Errorf("Error parsing toml %s: %v", file, err)
-		}
+	log.Printf("file=%s, found it", file)
+	// Read it
+	buf, err := ioutil.ReadFile(file)
+	if err != nil {
+		return c, fmt.Errorf("Can not read %s", file)
+	}
+
+	err = toml.Unmarshal(buf, c)
+	if err != nil {
+		return c, fmt.Errorf("Error parsing toml %s: %v", file, err)
 	}
 	return
 }
@@ -63,6 +68,8 @@
 	// Load instance-specific file
 	file := filepath.Join(baseDir, name+".token")
 
+	log.Printf("instance is %s", file)
+
 	// Check if there is any config file
 	if _, err := os.Stat(file); err == nil {
 		// Read it
@@ -93,6 +100,7 @@
 	// Load global file
 	gFile := filepath.Join(baseDir, DefaultName)
 
+	log.Printf("global is %s", gFile)
 	c, err := loadGlobal(gFile)
 	if err != nil {
 		return
@@ -113,7 +121,7 @@
 
 	var sc []byte
 
-	if sc, err = toml.Marshal(c); err != nil {
+	if sc, err = toml.Marshal(*c); err != nil {
 		log.Fatalf("error saving configuration")
 	}
 	err = ioutil.WriteFile(filepath.Join(baseDir, DefaultName), sc, 0600)