diff options
author | Steve Manuel <nilslice@gmail.com> | 2016-12-18 18:08:11 -0800 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2016-12-18 18:08:11 -0800 |
commit | 7bf8aa5271945eb52e8db6f0c962d3a852b51e0a (patch) | |
tree | 305ea4c424ac415dbfa111e46bfffec4f7f1130d | |
parent | d467e6ef5b00fbbb2c3d0d8071a3c9c1b03cbd2a (diff) |
contin. debugging host port issue in config
-rw-r--r-- | system/db/config.go | 1 |
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) |