add notice log to updateconfig

This commit is contained in:
Bradley Cicenas 2017-02-05 00:33:16 +00:00
parent 198d4974e3
commit 1a3968409b

View File

@ -15,6 +15,7 @@ type ConfigMsg struct {
}
func updateConfig(k, v string) {
log.Noticef("config update: %s = %s", k, v)
configChan <- ConfigMsg{k, v}
}