Skip to content
Snippets Groups Projects
Commit 6e41358f authored by Semyon Krestyaninov's avatar Semyon Krestyaninov
Browse files

fix tests

parent 02f8d024
No related branches found
No related tags found
No related merge requests found
......@@ -36,7 +36,7 @@ func (enc *entryEncoder) EncodeEntry(entry zapcore.Entry, fields []zapcore.Field
ent := &logs.Entry{
ID: id.GenerateNewID(),
Timestamp: entry.Time,
LogLevel: logs.Level(entry.Level),
Level: logs.Level(entry.Level),
Message: entry.Message,
}
......
......@@ -44,7 +44,7 @@ func (enc *entryEncoderSlow) EncodeEntry(entry zapcore.Entry, fields []zapcore.F
ent := &logs.Entry{
ID: id.GenerateNewID(),
Timestamp: entry.Time,
LogLevel: logs.Level(entry.Level),
Level: logs.Level(entry.Level),
Message: entry.Message,
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment