diff options
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() |