Package org.apache.ignite.testframework
Class TestLogger
- java.lang.Object
-
- org.apache.ignite.testframework.TestLogger
-
- All Implemented Interfaces:
IgniteLogger
public final class TestLogger extends Object implements IgniteLogger
Test logger.
-
-
Field Summary
-
Fields inherited from interface org.apache.ignite.IgniteLogger
DEV_ONLY
-
-
Constructor Summary
Constructors Constructor Description TestLogger()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddebug(String msg)Logs out debug message.voiderror(String msg, Throwable e)Logs error message with optional exception.StringfileName()Gets name of the file being logged to if one is configured ornullotherwise.IgniteLoggergetLogger(Object ctgr)Creates new logger with given category based off the current instance.voidinfo(String msg)Logs out information message.booleanisDebugEnabled()Tests whetherdebuglevel is enabled.booleanisInfoEnabled()Tests whetherinfolevel is enabled.booleanisQuiet()Tests whether Logger is in "Quiet mode".booleanisTraceEnabled()Tests whethertracelevel is enabled.voidtrace(String msg)Logs out trace message.voidwarning(String msg, Throwable e)Logs out warning message with optional exception.
-
-
-
Method Detail
-
getLogger
public IgniteLogger getLogger(Object ctgr)
Description copied from interface:IgniteLoggerCreates new logger with given category based off the current instance.- Specified by:
getLoggerin interfaceIgniteLogger- Parameters:
ctgr- Category for new logger.- Returns:
- New logger with given category.
-
trace
public void trace(String msg)
Description copied from interface:IgniteLoggerLogs out trace message.- Specified by:
tracein interfaceIgniteLogger- Parameters:
msg- Trace message.
-
debug
public void debug(String msg)
Description copied from interface:IgniteLoggerLogs out debug message.- Specified by:
debugin interfaceIgniteLogger- Parameters:
msg- Debug message.
-
info
public void info(String msg)
Description copied from interface:IgniteLoggerLogs out information message.- Specified by:
infoin interfaceIgniteLogger- Parameters:
msg- Information message.
-
warning
public void warning(String msg, Throwable e)
Description copied from interface:IgniteLoggerLogs out warning message with optional exception.- Specified by:
warningin interfaceIgniteLogger- Parameters:
msg- Warning message.e- Optional exception (can benull).
-
error
public void error(String msg, Throwable e)
Description copied from interface:IgniteLoggerLogs error message with optional exception.- Specified by:
errorin interfaceIgniteLogger- Parameters:
msg- Error message.e- Optional exception (can benull).
-
isTraceEnabled
public boolean isTraceEnabled()
Description copied from interface:IgniteLoggerTests whethertracelevel is enabled.- Specified by:
isTraceEnabledin interfaceIgniteLogger- Returns:
truein case whentracelevel is enabled,falseotherwise.
-
isDebugEnabled
public boolean isDebugEnabled()
Description copied from interface:IgniteLoggerTests whetherdebuglevel is enabled.- Specified by:
isDebugEnabledin interfaceIgniteLogger- Returns:
truein case whendebuglevel is enabled,falseotherwise.
-
isInfoEnabled
public boolean isInfoEnabled()
Description copied from interface:IgniteLoggerTests whetherinfolevel is enabled.- Specified by:
isInfoEnabledin interfaceIgniteLogger- Returns:
truein case wheninfolevel is enabled,falseotherwise.
-
isQuiet
public boolean isQuiet()
Description copied from interface:IgniteLoggerTests whether Logger is in "Quiet mode".- Specified by:
isQuietin interfaceIgniteLogger- Returns:
true"Quiet mode" is enabled,falseotherwise
-
fileName
public String fileName()
Description copied from interface:IgniteLoggerGets name of the file being logged to if one is configured ornullotherwise.- Specified by:
fileNamein interfaceIgniteLogger- Returns:
- Name of the file being logged to if one is configured or
nullotherwise.
-
-