summaryrefslogtreecommitdiff
path: root/system
diff options
context:
space:
mode:
authorSteve Manuel <nilslice@gmail.com>2016-12-18 18:08:11 -0800
committerSteve Manuel <nilslice@gmail.com>2016-12-18 18:08:11 -0800
commit7bf8aa5271945eb52e8db6f0c962d3a852b51e0a (patch)
tree305ea4c424ac415dbfa111e46bfffec4f7f1130d /system
parentd467e6ef5b00fbbb2c3d0d8071a3c9c1b03cbd2a (diff)
contin. debugging host port issue in config
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)