summaryrefslogtreecommitdiff
path: root/system
diff options
context:
space:
mode:
Diffstat (limited to 'system')
-rw-r--r--system/db/config.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/system/db/config.go b/system/db/config.go
index dcb7780..7873a55 100644
--- a/system/db/config.go
+++ b/system/db/config.go
@@ -138,6 +138,7 @@ func PutConfig(key string, value interface{}) error {
for k, v := range kv {
switch v.(type) {
case string:
+ fmt.Println("type string:", v)
data.Set(k, v.(string))
case []string:
vv := v.([]string)