C# Класс Support.IO.Logger

Показать файл Открыть проект

Открытые методы

Метод Описание
AddLogLine ( string sLine ) : void

Adds a single line

AddLogLines ( string arrayLines ) : void

Adds an array of lines to the log

Clear ( ) : void

Clears the log (and log file if enabled)

EndLog ( ) : void

Concludes the log (only applies to file logging)

InitLogger ( LoggerI iLogger, bool bLogToFile ) : void

The logger must be initialized through this method.

Описание методов

AddLogLine() публичный статический Метод

Adds a single line
public static AddLogLine ( string sLine ) : void
sLine string Line to add
Результат void

AddLogLines() публичный статический Метод

Adds an array of lines to the log
public static AddLogLines ( string arrayLines ) : void
arrayLines string Strings to log
Результат void

Clear() публичный статический Метод

Clears the log (and log file if enabled)
public static Clear ( ) : void
Результат void

EndLog() публичный статический Метод

Concludes the log (only applies to file logging)
public static EndLog ( ) : void
Результат void

InitLogger() публичный статический Метод

The logger must be initialized through this method.
public static InitLogger ( LoggerI iLogger, bool bLogToFile ) : void
iLogger LoggerI An object implementing the LoggerI interface.
bLogToFile bool Flag indicating whether to log the output or not.
Результат void