diff options
author | Steve Manuel <nilslice@gmail.com> | 2016-12-19 09:03:29 -0800 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2016-12-19 09:03:29 -0800 |
commit | 2696dc4b3c951b84aa398dd12a76016f085b2bfe (patch) | |
tree | 855b65920a9ca280f90ac68ea3cf8d5257b07ef4 /system/db/config.go | |
parent | 7bf8aa5271945eb52e8db6f0c962d3a852b51e0a (diff) |
contin. debugging host port issue in config
Diffstat (limited to 'system/db/config.go')
-rw-r--r-- | system/db/config.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/db/config.go b/system/db/config.go index 7873a55..8168257 100644 --- a/system/db/config.go +++ b/system/db/config.go @@ -121,7 +121,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) + fmt.Println("PutConfig:", key, value) kv := make(map[string]interface{}) c, err := ConfigAll() |