mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-17 10:25:15 +00:00
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:
parent
0adaf9fb4c
commit
1b660c5127
@ -161,7 +161,7 @@ class Netty4InternalESLogger extends AbstractInternalLogger {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void error(String msg) {
|
public void error(String msg) {
|
||||||
logger.equals(msg);
|
logger.error(msg);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
Loading…
x
Reference in New Issue
Block a user