Method | Description | |
---|---|---|
GetCurrentLogContent ( string channel ) : string |
Gets a current log file's contents
|
|
GetCurrentLogNames ( ) : IEnumerable |
Gets all the current log file names in Current
|
|
RolloverLog ( string channel ) : bool |
Archives a log file
|
|
WriteToLog ( string content, bool beQuiet = false ) : void |
Write to a log
|
|
WriteToLog ( string content, string channel, bool beQuiet = false ) : void |
Write to a log
|
Method | Description | |
---|---|---|
WriteLine ( string content, string channel ) : void |
Writes content to a log file
|
public GetCurrentLogContent ( string channel ) : string | ||
channel | string | the log file name |
return | string |
public RolloverLog ( string channel ) : bool | ||
channel | string | the log file to archive |
return | bool |
public WriteToLog ( string content, bool beQuiet = false ) : void | ||
content | string | the content to log |
beQuiet | bool | Announce it in game or not |
return | void |
public WriteToLog ( string content, string channel, bool beQuiet = false ) : void | ||
content | string | the content to log |
channel | string | which log to append it to |
beQuiet | bool | |
return | void |