Interface IKNetConnectLogging
Logging interface for KNet Connect SDK
public interface IKNetConnectLogging
Properties
IsDebugEnabled
Reports if debug level is enabled
bool IsDebugEnabled { get; }
Property Value
IsErrorEnabled
Reports if error level is enabled
bool IsErrorEnabled { get; }
Property Value
IsInfoEnabled
Reports if info level is enabled
bool IsInfoEnabled { get; }
Property Value
IsTraceEnabled
Reports if trace level is enabled
bool IsTraceEnabled { get; }
Property Value
IsWarnEnabled
Reports if warning level is enabled
bool IsWarnEnabled { get; }
Property Value
Methods
LogDebug(string)
Write a debug
void LogDebug(string var1)
Parameters
var1
stringString to write
LogDebug(string, JVMBridgeException)
Write a debug
void LogDebug(string var1, JVMBridgeException var2)
Parameters
var1
stringString to write
var2
JVMBridgeExceptionAssociated MASES.JCOBridge.C2JBridge.JVMBridgeException
LogError(string)
Write a error
void LogError(string var1)
Parameters
var1
stringString to write
LogError(string, JVMBridgeException)
Write a error
void LogError(string var1, JVMBridgeException var2)
Parameters
var1
stringString to write
var2
JVMBridgeExceptionAssociated MASES.JCOBridge.C2JBridge.JVMBridgeException
LogInfo(string)
Write a info
void LogInfo(string var1)
Parameters
var1
stringString to write
LogInfo(string, JVMBridgeException)
Write a info
void LogInfo(string var1, JVMBridgeException var2)
Parameters
var1
stringString to write
var2
JVMBridgeExceptionAssociated MASES.JCOBridge.C2JBridge.JVMBridgeException
LogTrace(string)
Write a trace
void LogTrace(string var1)
Parameters
var1
stringString to write
LogTrace(string, JVMBridgeException)
Write a trace
void LogTrace(string var1, JVMBridgeException var2)
Parameters
var1
stringString to write
var2
JVMBridgeExceptionAssociated MASES.JCOBridge.C2JBridge.JVMBridgeException
LogWarn(string)
Write a warning
void LogWarn(string var1)
Parameters
var1
stringString to write
LogWarn(string, JVMBridgeException)
Write a warning
void LogWarn(string var1, JVMBridgeException var2)
Parameters
var1
stringString to write
var2
JVMBridgeExceptionAssociated MASES.JCOBridge.C2JBridge.JVMBridgeException