Method | Description | |
---|---|---|
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.
|
public static AddLogLine ( string sLine ) : void | ||
sLine | string | Line to add |
return | void |
public static AddLogLines ( string arrayLines ) : void | ||
arrayLines | string | Strings to log |
return | void |
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. |
return | void |