Merge pull request #85 from unistack-org/fields_fix

fields fix
This commit is contained in:
Василий Толстов 2022-10-13 22:58:56 +03:00 committed by GitHub
commit e1623bf563
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -33,7 +33,7 @@ func (l *zeroLogger) Clone(opts ...logger.Option) logger.Logger {
for _, o := range opts {
o(&nl.opts.Options)
}
nl.opts.Options.Fields = append(l.opts.Options.Fields, nl.opts.Options.Fields...)
_ = nl.Init()
return nl
}

View File

@ -25,9 +25,9 @@ func TestFields(t *testing.T) {
t.Fatalf("logger fields not works, buf contains: %s", buf.Bytes())
}
buf.Reset()
mnl := l.Fields(map[string]interface{}{"key": "val"})
mnl := nl.Fields("key1", "val1")
mnl.Infof(ctx, "message")
if bytes.Contains(buf.Bytes(), []byte(`"key":"val"`)) {
if !bytes.Contains(buf.Bytes(), []byte(`"key1":"val1"`)) || !bytes.Contains(buf.Bytes(), []byte(`"key":"val"`)) {
t.Fatalf("logger fields not works, buf contains: %s", buf.Bytes())
}
}