Table of Contents

Interface IKNetConnectLogging

Namespace
MASES.KNet.Connect
Assembly
MASES.KNet.dll

Logging interface for KNet Connect SDK

public interface IKNetConnectLogging

Properties

IsDebugEnabled

Reports if debug level is enabled

bool IsDebugEnabled { get; }

Property Value

bool

IsErrorEnabled

Reports if error level is enabled

bool IsErrorEnabled { get; }

Property Value

bool

IsInfoEnabled

Reports if info level is enabled

bool IsInfoEnabled { get; }

Property Value

bool

IsTraceEnabled

Reports if trace level is enabled

bool IsTraceEnabled { get; }

Property Value

bool

IsWarnEnabled

Reports if warning level is enabled

bool IsWarnEnabled { get; }

Property Value

bool

Name

Reports the name of the logger

string Name { get; }

Property Value

string

Methods

LogDebug(string)

Write a debug string into Apache Connect tracing subsystem

void LogDebug(string var1)

Parameters

var1 string

String to write

LogDebug(string, JVMBridgeException)

Write a debug string into Apache Connect tracing subsystem

void LogDebug(string var1, JVMBridgeException var2)

Parameters

var1 string

String to write

var2 JVMBridgeException

Associated JVMBridgeException

LogDebug(string, params object[])

Write a debug string into Apache Connect tracing subsystem

void LogDebug(string var1, params object[] var2)

Parameters

var1 string

String to write

var2 object[]

The array of object to format var1

Remarks

Since the counter-part is based on log4j or slf4j the parameters in var2 will be applied on var1 using the rules defined from log4j or slf4j; see https://www.slf4j.org/api/org/slf4j/Logger.html

LogError(string)

Write a error into Apache Connect tracing subsystem

void LogError(string var1)

Parameters

var1 string

String to write

LogError(string, JVMBridgeException)

Write a error into Apache Connect tracing subsystem

void LogError(string var1, JVMBridgeException var2)

Parameters

var1 string

String to write

var2 JVMBridgeException

Associated JVMBridgeException

LogError(string, params object[])

Write a error string into Apache Connect tracing subsystem

void LogError(string var1, params object[] var2)

Parameters

var1 string

String to write

var2 object[]

The array of object to format var1

Remarks

Since the counter-part is based on log4j or slf4j the parameters in var2 will be applied on var1 using the rules defined from log4j or slf4j; see https://www.slf4j.org/api/org/slf4j/Logger.html

LogInfo(string)

Write a info string into Apache Connect tracing subsystem

void LogInfo(string var1)

Parameters

var1 string

String to write

LogInfo(string, JVMBridgeException)

Write a info string into Apache Connect tracing subsystem

void LogInfo(string var1, JVMBridgeException var2)

Parameters

var1 string

String to write

var2 JVMBridgeException

Associated JVMBridgeException

LogInfo(string, params object[])

Write a info string into Apache Connect tracing subsystem

void LogInfo(string var1, params object[] var2)

Parameters

var1 string

String to write

var2 object[]

The array of object to format var1

Remarks

Since the counter-part is based on log4j or slf4j the parameters in var2 will be applied on var1 using the rules defined from log4j or slf4j; see https://www.slf4j.org/api/org/slf4j/Logger.html

LogTrace(string)

Write a trace string into Apache Connect tracing subsystem

void LogTrace(string var1)

Parameters

var1 string

String to write

LogTrace(string, JVMBridgeException)

Write a trace string log into Apache Connect tracing subsystem

void LogTrace(string var1, JVMBridgeException var2)

Parameters

var1 string

String to write

var2 JVMBridgeException

Associated JVMBridgeException

LogTrace(string, params object[])

Write a trace string into Apache Connect tracing subsystem

void LogTrace(string var1, params object[] var2)

Parameters

var1 string

String to write

var2 object[]

The array of object to format var1

Remarks

Since the counter-part is based on log4j or slf4j the parameters in var2 will be applied on var1 using the rules defined from log4j or slf4j; see https://www.slf4j.org/api/org/slf4j/Logger.html

LogWarn(string)

Write a warning string into Apache Connect tracing subsystem

void LogWarn(string var1)

Parameters

var1 string

String to write

LogWarn(string, JVMBridgeException)

Write a warning string into Apache Connect tracing subsystem

void LogWarn(string var1, JVMBridgeException var2)

Parameters

var1 string

String to write

var2 JVMBridgeException

Associated JVMBridgeException

LogWarn(string, params object[])

Write a warning string into Apache Connect tracing subsystem

void LogWarn(string var1, params object[] var2)

Parameters

var1 string

String to write

var2 object[]

The array of object to format var1

Remarks

Since the counter-part is based on log4j or slf4j the parameters in var2 will be applied on var1 using the rules defined from log4j or slf4j; see https://www.slf4j.org/api/org/slf4j/Logger.html