Package org.apache.ignite.testframework
Class TestLogger
java.lang.Object
org.apache.ignite.testframework.TestLogger
- All Implemented Interfaces:
IgniteLogger
Test logger.
-
Field Summary
Fields inherited from interface org.apache.ignite.IgniteLogger
DEV_ONLY -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidLogs out debug message.voidLogs error message with optional exception.fileName()Gets name of the file being logged to if one is configured ornullotherwise.Creates new logger with given category based off the current instance.voidLogs out information message.booleanTests whetherdebuglevel is enabled.booleanTests whetherinfolevel is enabled.booleanisQuiet()Tests whether Logger is in "Quiet mode".booleanTests whethertracelevel is enabled.voidLogs out trace message.voidLogs out warning message with optional exception.
-
Constructor Details
-
TestLogger
public TestLogger()
-
-
Method Details
-
getLogger
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
Description copied from interface:IgniteLoggerLogs out trace message.- Specified by:
tracein interfaceIgniteLogger- Parameters:
msg- Trace message.
-
debug
Description copied from interface:IgniteLoggerLogs out debug message.- Specified by:
debugin interfaceIgniteLogger- Parameters:
msg- Debug message.
-
info
Description copied from interface:IgniteLoggerLogs out information message.- Specified by:
infoin interfaceIgniteLogger- Parameters:
msg- Information message.
-
warning
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
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
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.
-