Fixed issue with error

This commit is contained in:
2022-09-18 22:26:46 -05:00

View File

@ -471,7 +471,7 @@ public class ApplicationLogger implements org.slf4j.Logger {
public void error(Map<String, String> values, String valueFormat, StringBuilder sb, Throwable e) { public void error(Map<String, String> values, String valueFormat, StringBuilder sb, Throwable e) {
msgHelper(LogLevel.ERROR, values, valueFormat, sb); msgHelper(LogLevel.ERROR, values, valueFormat, sb);
if (e != null) { if (e != null) {
msgHelper("", e); msgHelper(LogLevel.ERROR,"", e);
} }
} }