fix bug with nil field
This commit is contained in:
parent
19e4740055
commit
5ea6a8b1a1
|
@ -71,7 +71,7 @@ func (kl *GoKitIOLogger) Error(message string) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (kl *GoKitIOLogger) log(message string) {
|
func (kl *GoKitIOLogger) log(message string) {
|
||||||
kv := make([]interface{}, len(kl.fields)*2)
|
kv := make([]interface{}, 0)
|
||||||
for k, v := range kl.fields {
|
for k, v := range kl.fields {
|
||||||
kv = append(kv, k, v)
|
kv = append(kv, k, v)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue