Methods Summary |
---|
public void | activateOptions()Nothing to activate.
|
public void | debug(java.lang.String message)Overrides the standard debug method by appending the value of
suffix variable to each message.
super.log(FQCN, Level.DEBUG, message + " " + suffix, null);
|
public static org.apache.log4j.Logger | getLogger(java.lang.String name)
return LogManager.getLogger(name, factory);
|
public static org.apache.log4j.Logger | getLogger(java.lang.Class clazz)
return XLogger.getLogger(clazz.getName());
|
public java.lang.String | getSuffix()
return suffix;
|
public void | lethal(java.lang.String message, java.lang.Throwable t)We introduce a new printing method in order to support {@link
XLevel#LETHAL}.
if(repository.isDisabled(XLevel.LETHAL_INT))
return;
if(XLevel.LETHAL.isGreaterOrEqual(this.getEffectiveLevel()))
forcedLog(FQCN, XLevel.LETHAL, message, t);
|
public void | lethal(java.lang.String message)We introduce a new printing method in order to support {@link
XLevel#LETHAL}.
if(repository.isDisabled(XLevel.LETHAL_INT))
return;
if(XLevel.LETHAL.isGreaterOrEqual(this.getEffectiveLevel()))
forcedLog(FQCN, XLevel.LETHAL, message, null);
|
public void | setSuffix(java.lang.String suffix)
this.suffix = suffix;
|
public void | trace(java.lang.String message, java.lang.Throwable t)We introduce a new printing method that takes the TRACE level.
if(repository.isDisabled(XLevel.TRACE_INT))
return;
if(XLevel.TRACE.isGreaterOrEqual(this.getEffectiveLevel()))
forcedLog(FQCN, XLevel.TRACE, message, t);
|
public void | trace(java.lang.String message)We introduce a new printing method that takes the TRACE level.
if(repository.isDisabled(XLevel.TRACE_INT))
return;
if(XLevel.TRACE.isGreaterOrEqual(this.getEffectiveLevel()))
forcedLog(FQCN, XLevel.TRACE, message, null);
|