public class GridLoggerProxy extends Object implements IgniteLogger, LifecycleAware, Externalizable
DEV_ONLY
Constructor and Description |
---|
GridLoggerProxy()
No-arg constructor is required by externalization.
|
GridLoggerProxy(IgniteLogger impl,
Object ctgr,
String igniteInstanceName,
String id8) |
Modifier and Type | Method and Description |
---|---|
void |
debug(String msg)
Logs out debug message.
|
void |
debug(String marker,
String msg)
Logs out debug message.
|
void |
error(String msg)
Logs out error message.
|
void |
error(String marker,
String msg,
Throwable e)
Logs error message with optional exception.
|
void |
error(String msg,
Throwable e)
Logs error message with optional exception.
|
String |
fileName()
Gets name of the file being logged to if one is configured or
null otherwise. |
IgniteLogger |
getLogger(Object ctgr)
Creates new logger with given category based off the current instance.
|
String |
getLoggerInfo()
Gets the class name and parameters of the Logger type used.
|
void |
info(String msg)
Logs out information message.
|
void |
info(String marker,
String msg)
Logs out information message.
|
boolean |
isDebugEnabled()
Tests whether
debug level is enabled. |
boolean |
isInfoEnabled()
Tests whether
info level is enabled. |
boolean |
isQuiet()
Tests whether Logger is in "Quiet mode".
|
boolean |
isTraceEnabled()
Tests whether
trace level is enabled. |
void |
readExternal(ObjectInput in) |
protected Object |
readResolve()
Reconstructs object on unmarshalling.
|
void |
start()
Starts grid component, called on grid start.
|
void |
stop()
Stops grid component, called on grid shutdown.
|
String |
toString() |
void |
trace(String msg)
Logs out trace message.
|
void |
trace(String marker,
String msg)
Logs out trace message.
|
void |
warning(String msg)
Logs out warning message.
|
void |
warning(String marker,
String msg,
Throwable e)
Logs out warning message with optional exception.
|
void |
warning(String msg,
Throwable e)
Logs out warning message with optional exception.
|
void |
writeExternal(ObjectOutput out) |
public GridLoggerProxy()
public GridLoggerProxy(IgniteLogger impl, @Nullable Object ctgr, @Nullable String igniteInstanceName, String id8)
impl
- Logger implementation to proxy to.ctgr
- Optional logger category.igniteInstanceName
- Ignite instance name (can be null
for default grid).id8
- Node ID.public void start()
start
in interface LifecycleAware
public void stop()
stop
in interface LifecycleAware
public IgniteLogger getLogger(Object ctgr)
getLogger
in interface IgniteLogger
ctgr
- Category for new logger.@Nullable public String fileName()
null
otherwise.fileName
in interface IgniteLogger
null
otherwise.public void trace(String msg)
trace
in interface IgniteLogger
msg
- Trace message.public void trace(@Nullable String marker, String msg)
this.trace(msg)
.trace
in interface IgniteLogger
marker
- Name of the marker to be associated with the message.msg
- Trace message.public void debug(String msg)
debug
in interface IgniteLogger
msg
- Debug message.public void debug(@Nullable String marker, String msg)
this.debug(msg)
.debug
in interface IgniteLogger
marker
- Name of the marker to be associated with the message.msg
- Debug message.public void info(String msg)
info
in interface IgniteLogger
msg
- Information message.public void info(@Nullable String marker, String msg)
this.info(msg)
.info
in interface IgniteLogger
marker
- Name of the marker to be associated with the message.msg
- Information message.public void warning(String msg)
warning
in interface IgniteLogger
msg
- Warning message.public void warning(String msg, Throwable e)
warning
in interface IgniteLogger
msg
- Warning message.e
- Optional exception (can be null
).public void warning(@Nullable String marker, String msg, @Nullable Throwable e)
this.warning(msg)
.warning
in interface IgniteLogger
marker
- Name of the marker to be associated with the message.msg
- Warning message.e
- Optional exception (can be null
).public void error(String msg)
error
in interface IgniteLogger
msg
- Error message.public void error(String msg, Throwable e)
error
in interface IgniteLogger
msg
- Error message.e
- Optional exception (can be null
).public void error(@Nullable String marker, String msg, @Nullable Throwable e)
this.error(msg)
.error
in interface IgniteLogger
marker
- Name of the marker to be associated with the message.msg
- Error message.e
- Optional exception (can be null
).public boolean isTraceEnabled()
trace
level is enabled.isTraceEnabled
in interface IgniteLogger
true
in case when trace
level is enabled, false
otherwise.public boolean isDebugEnabled()
debug
level is enabled.isDebugEnabled
in interface IgniteLogger
true
in case when debug
level is enabled, false
otherwise.public boolean isInfoEnabled()
info
level is enabled.isInfoEnabled
in interface IgniteLogger
true
in case when info
level is enabled, false
otherwise.public boolean isQuiet()
isQuiet
in interface IgniteLogger
true
"Quiet mode" is enabled, false
otherwisepublic String getLoggerInfo()
public void writeExternal(ObjectOutput out) throws IOException
writeExternal
in interface Externalizable
IOException
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
readExternal
in interface Externalizable
IOException
ClassNotFoundException
protected Object readResolve() throws ObjectStreamException
ObjectStreamException
- Thrown in case of unmarshalling error.
Follow @ApacheIgnite
Ignite Fabric : ver. 2.5.0 Release Date : May 23 2018