Fix incorrect logger invocation

It looks like auto-complete gave us a nasty surprise here with
Logger#equals being invoked instead of Logger#error swallowing the
absolute worst-possible level of a log message. This commit fixes the
invocation.
This commit is contained in:
Jason Tedor 2017-04-25 16:25:52 -04:00
parent 0adaf9fb4c
commit 1b660c5127
1 changed files with 1 additions and 1 deletions

View File

@ -161,7 +161,7 @@ class Netty4InternalESLogger extends AbstractInternalLogger {
@Override
public void error(String msg) {
logger.equals(msg);
logger.error(msg);
}
@Override