summaryrefslogtreecommitdiff
path: root/system/db/config.go
diff options
context:
space:
mode:
Diffstat (limited to 'system/db/config.go')
-rw-r--r--system/db/config.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/system/db/config.go b/system/db/config.go
index ef3c382..17da078 100644
--- a/system/db/config.go
+++ b/system/db/config.go
@@ -3,6 +3,7 @@ package db
import (
"bytes"
"encoding/json"
+ "fmt"
"net/url"
"strings"
@@ -119,6 +120,7 @@ func ConfigAll() ([]byte, error) {
// PutConfig updates a single k/v in the config
func PutConfig(key string, value interface{}) error {
+ fmt.Println(key, value)
kv := make(map[string]interface{})
c, err := ConfigAll()