mirror of https://github.com/apache/nifi.git
NIFI-1216: Check if log level is enabled immediately in the SimpleProcessLogger before formatting log message
Signed-off-by: joewitt <joewitt@apache.org>
This commit is contained in:
parent
67aed5eb92
commit
9aa9c27dbe
|
@ -63,7 +63,10 @@ public class SimpleProcessLogger implements ProcessorLog {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void warn(String msg, final Throwable t) {
|
public void warn(String msg, final Throwable t) {
|
||||||
//warn("{} " + msg, new Object[]{component}, t);
|
if (!isWarnEnabled()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
msg = "{} " + msg;
|
msg = "{} " + msg;
|
||||||
final Object[] os = {component, t.toString(), t};
|
final Object[] os = {component, t.toString(), t};
|
||||||
logger.warn(msg, os);
|
logger.warn(msg, os);
|
||||||
|
@ -72,6 +75,10 @@ public class SimpleProcessLogger implements ProcessorLog {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void warn(String msg, Object[] os) {
|
public void warn(String msg, Object[] os) {
|
||||||
|
if (!isWarnEnabled()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (lastArgIsException(os)) {
|
if (lastArgIsException(os)) {
|
||||||
warn(msg, translateException(os), (Throwable) os[os.length - 1]);
|
warn(msg, translateException(os), (Throwable) os[os.length - 1]);
|
||||||
} else {
|
} else {
|
||||||
|
@ -84,6 +91,10 @@ public class SimpleProcessLogger implements ProcessorLog {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void warn(String msg, Object[] os, final Throwable t) {
|
public void warn(String msg, Object[] os, final Throwable t) {
|
||||||
|
if (!isWarnEnabled()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
os = addProcessorAndThrowable(os, t);
|
os = addProcessorAndThrowable(os, t);
|
||||||
msg = "{} " + msg + ": {}";
|
msg = "{} " + msg + ": {}";
|
||||||
|
|
||||||
|
@ -96,6 +107,10 @@ public class SimpleProcessLogger implements ProcessorLog {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void warn(String msg) {
|
public void warn(String msg) {
|
||||||
|
if (!isWarnEnabled()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
msg = "{} " + msg;
|
msg = "{} " + msg;
|
||||||
final Object[] os = {component};
|
final Object[] os = {component};
|
||||||
logger.warn(msg, component);
|
logger.warn(msg, component);
|
||||||
|
@ -104,6 +119,10 @@ public class SimpleProcessLogger implements ProcessorLog {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void trace(String msg, Throwable t) {
|
public void trace(String msg, Throwable t) {
|
||||||
|
if (!isTraceEnabled()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
msg = "{} " + msg;
|
msg = "{} " + msg;
|
||||||
final Object[] os = {component, t.toString(), t};
|
final Object[] os = {component, t.toString(), t};
|
||||||
logger.trace(msg, os);
|
logger.trace(msg, os);
|
||||||
|
@ -112,6 +131,10 @@ public class SimpleProcessLogger implements ProcessorLog {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void trace(String msg, Object[] os) {
|
public void trace(String msg, Object[] os) {
|
||||||
|
if (!isTraceEnabled()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
msg = "{} " + msg;
|
msg = "{} " + msg;
|
||||||
os = addProcessor(os);
|
os = addProcessor(os);
|
||||||
logger.trace(msg, os);
|
logger.trace(msg, os);
|
||||||
|
@ -120,6 +143,10 @@ public class SimpleProcessLogger implements ProcessorLog {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void trace(String msg) {
|
public void trace(String msg) {
|
||||||
|
if (!isTraceEnabled()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
msg = "{} " + msg;
|
msg = "{} " + msg;
|
||||||
final Object[] os = {component};
|
final Object[] os = {component};
|
||||||
logger.trace(msg, os);
|
logger.trace(msg, os);
|
||||||
|
@ -128,6 +155,10 @@ public class SimpleProcessLogger implements ProcessorLog {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void trace(String msg, Object[] os, Throwable t) {
|
public void trace(String msg, Object[] os, Throwable t) {
|
||||||
|
if (!isTraceEnabled()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
os = addProcessorAndThrowable(os, t);
|
os = addProcessorAndThrowable(os, t);
|
||||||
msg = "{} " + msg + ": {}";
|
msg = "{} " + msg + ": {}";
|
||||||
|
|
||||||
|
@ -163,6 +194,10 @@ public class SimpleProcessLogger implements ProcessorLog {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void info(String msg, Throwable t) {
|
public void info(String msg, Throwable t) {
|
||||||
|
if (!isInfoEnabled()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
msg = "{} " + msg;
|
msg = "{} " + msg;
|
||||||
final Object[] os = {component, t.toString()};
|
final Object[] os = {component, t.toString()};
|
||||||
|
|
||||||
|
@ -175,6 +210,10 @@ public class SimpleProcessLogger implements ProcessorLog {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void info(String msg, Object[] os) {
|
public void info(String msg, Object[] os) {
|
||||||
|
if (!isInfoEnabled()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
msg = "{} " + msg;
|
msg = "{} " + msg;
|
||||||
os = addProcessor(os);
|
os = addProcessor(os);
|
||||||
|
|
||||||
|
@ -184,6 +223,10 @@ public class SimpleProcessLogger implements ProcessorLog {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void info(String msg) {
|
public void info(String msg) {
|
||||||
|
if (!isInfoEnabled()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
msg = "{} " + msg;
|
msg = "{} " + msg;
|
||||||
final Object[] os = {component};
|
final Object[] os = {component};
|
||||||
|
|
||||||
|
@ -193,6 +236,10 @@ public class SimpleProcessLogger implements ProcessorLog {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void info(String msg, Object[] os, Throwable t) {
|
public void info(String msg, Object[] os, Throwable t) {
|
||||||
|
if (!isInfoEnabled()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
os = addProcessorAndThrowable(os, t);
|
os = addProcessorAndThrowable(os, t);
|
||||||
msg = "{} " + msg + ": {}";
|
msg = "{} " + msg + ": {}";
|
||||||
|
|
||||||
|
@ -210,6 +257,10 @@ public class SimpleProcessLogger implements ProcessorLog {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void error(String msg, Throwable t) {
|
public void error(String msg, Throwable t) {
|
||||||
|
if (!isErrorEnabled()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
msg = "{} " + msg;
|
msg = "{} " + msg;
|
||||||
Object[] os = {component, t.toString()};
|
Object[] os = {component, t.toString()};
|
||||||
logger.error(msg, os);
|
logger.error(msg, os);
|
||||||
|
@ -222,6 +273,10 @@ public class SimpleProcessLogger implements ProcessorLog {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void error(String msg, Object[] os) {
|
public void error(String msg, Object[] os) {
|
||||||
|
if (!isErrorEnabled()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (lastArgIsException(os)) {
|
if (lastArgIsException(os)) {
|
||||||
error(msg, translateException(os), (Throwable) os[os.length - 1]);
|
error(msg, translateException(os), (Throwable) os[os.length - 1]);
|
||||||
} else {
|
} else {
|
||||||
|
@ -234,6 +289,10 @@ public class SimpleProcessLogger implements ProcessorLog {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void error(String msg) {
|
public void error(String msg) {
|
||||||
|
if (!isErrorEnabled()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
msg = "{} " + msg;
|
msg = "{} " + msg;
|
||||||
final Object[] os = {component};
|
final Object[] os = {component};
|
||||||
|
|
||||||
|
@ -254,6 +313,10 @@ public class SimpleProcessLogger implements ProcessorLog {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void error(String msg, Object[] os, Throwable t) {
|
public void error(String msg, Object[] os, Throwable t) {
|
||||||
|
if (!isErrorEnabled()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
os = addProcessorAndThrowable(os, t);
|
os = addProcessorAndThrowable(os, t);
|
||||||
msg = "{} " + msg + ": {}";
|
msg = "{} " + msg + ": {}";
|
||||||
|
|
||||||
|
@ -266,6 +329,10 @@ public class SimpleProcessLogger implements ProcessorLog {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void debug(String msg, Throwable t) {
|
public void debug(String msg, Throwable t) {
|
||||||
|
if (!isDebugEnabled()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
msg = "{} " + msg;
|
msg = "{} " + msg;
|
||||||
final Object[] os = {component};
|
final Object[] os = {component};
|
||||||
|
|
||||||
|
@ -275,6 +342,10 @@ public class SimpleProcessLogger implements ProcessorLog {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void debug(String msg, Object[] os) {
|
public void debug(String msg, Object[] os) {
|
||||||
|
if (!isDebugEnabled()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
os = addProcessor(os);
|
os = addProcessor(os);
|
||||||
msg = "{} " + msg;
|
msg = "{} " + msg;
|
||||||
|
|
||||||
|
@ -284,6 +355,10 @@ public class SimpleProcessLogger implements ProcessorLog {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void debug(String msg, Object[] os, Throwable t) {
|
public void debug(String msg, Object[] os, Throwable t) {
|
||||||
|
if (!isDebugEnabled()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
os = addProcessorAndThrowable(os, t);
|
os = addProcessorAndThrowable(os, t);
|
||||||
msg = "{} " + msg + ": {}";
|
msg = "{} " + msg + ": {}";
|
||||||
|
|
||||||
|
@ -296,6 +371,10 @@ public class SimpleProcessLogger implements ProcessorLog {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void debug(String msg) {
|
public void debug(String msg) {
|
||||||
|
if (!isDebugEnabled()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
msg = "{} " + msg;
|
msg = "{} " + msg;
|
||||||
final Object[] os = {component};
|
final Object[] os = {component};
|
||||||
|
|
||||||
|
|
|
@ -53,6 +53,13 @@ public class TestSimpleProcessLogger {
|
||||||
Field loggerField = componentLog.getClass().getDeclaredField("logger");
|
Field loggerField = componentLog.getClass().getDeclaredField("logger");
|
||||||
loggerField.setAccessible(true);
|
loggerField.setAccessible(true);
|
||||||
logger = mock(Logger.class);
|
logger = mock(Logger.class);
|
||||||
|
|
||||||
|
when(logger.isDebugEnabled()).thenReturn(true);
|
||||||
|
when(logger.isInfoEnabled()).thenReturn(true);
|
||||||
|
when(logger.isWarnEnabled()).thenReturn(true);
|
||||||
|
when(logger.isErrorEnabled()).thenReturn(true);
|
||||||
|
when(logger.isTraceEnabled()).thenReturn(true);
|
||||||
|
|
||||||
loggerField.set(componentLog, logger);
|
loggerField.set(componentLog, logger);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
|
|
Loading…
Reference in New Issue