Package com.orbipay.paymentsapi.client
Class AppLogger
- java.lang.Object
-
- com.orbipay.paymentsapi.client.AppLogger
-
- All Implemented Interfaces:
IAppLogger,java.io.Serializable
public class AppLogger extends java.lang.Object implements IAppLogger
This class subject to change without prior notice, Please dont use this class directly.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AppLogger(java.lang.Class userClass)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddebug(java.lang.String message)voiderror(java.lang.String message)voiderror(java.lang.String message, java.lang.Throwable e)protected org.slf4j.LoggergetLogger(java.lang.Class userClass)voidinfo(java.lang.String message)voidinit(java.lang.Class userClass)booleanisDebugEnabled()booleanisInfoEnabled()booleanisTraceEnabled()voidtrace(java.lang.String message)voidwarn(java.lang.String message)
-
-
-
Method Detail
-
getLogger
protected org.slf4j.Logger getLogger(java.lang.Class userClass)
-
init
public void init(java.lang.Class userClass)
- Specified by:
initin interfaceIAppLogger
-
trace
public void trace(java.lang.String message)
- Specified by:
tracein interfaceIAppLogger
-
debug
public void debug(java.lang.String message)
- Specified by:
debugin interfaceIAppLogger
-
error
public void error(java.lang.String message)
- Specified by:
errorin interfaceIAppLogger
-
error
public void error(java.lang.String message, java.lang.Throwable e)- Specified by:
errorin interfaceIAppLogger
-
info
public void info(java.lang.String message)
- Specified by:
infoin interfaceIAppLogger
-
warn
public void warn(java.lang.String message)
- Specified by:
warnin interfaceIAppLogger
-
isDebugEnabled
public boolean isDebugEnabled()
- Specified by:
isDebugEnabledin interfaceIAppLogger
-
isInfoEnabled
public boolean isInfoEnabled()
- Specified by:
isInfoEnabledin interfaceIAppLogger
-
isTraceEnabled
public boolean isTraceEnabled()
- Specified by:
isTraceEnabledin interfaceIAppLogger
-
-