Log exception at ERROR level in CompositeLog

Fixes gh-22364
This commit is contained in:
Brian Clozel 2019-02-06 19:58:41 +01:00
parent d1e5a3af9f
commit ef8652615c
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ final class CompositeLog implements Log {
@Override
public void error(Object message, Throwable ex) {
this.errorLogger.error(message);
this.errorLogger.error(message, ex);
}
@Override