Свойство | Тип | Описание | |
---|---|---|---|
Events_OnBotShutdown | void | ||
InvokeOnDebug | void | ||
InvokeOnWrite | void | ||
Logging | System | ||
_WriteQueue | void |
Метод | Описание | |
---|---|---|
LogException ( |
Logs the specified exception into the log queue.
|
|
LogMessage ( string format ) : void |
Logs the specified message to the logging queue. This will not fire any message events. It will go straight to the log file without question.
|
|
Write ( Color color, string format ) : void |
Writes the specified message to the message queue.
|
|
Write ( string format ) : void |
Writes the specified message to the message queue.
|
|
WriteDebug ( Color color, string format ) : void |
Writes the debug message in the specific color. Debug messages are not shown to the end user by default. (They can be turned on via settings)
|
|
WriteDebug ( string format ) : void |
Writes the specified debug message to the message queue. [Default Color: Red] Debug messages are not shown to the end user by default. (They can be turned on via settings)
|
|
WriteException ( Color color, |
Writes the specified exception to the message queue. Debug messages are not shown to the end user by default. (They can be turned on via settings)
|
|
WriteException ( |
Writes the specified exception to the message queue. [Default Color: Red] Debug messages are not shown to the end user by default. (They can be turned on via settings)
|
Метод | Описание | |
---|---|---|
Events_OnBotShutdown ( object sender, |
||
InvokeOnDebug ( string message, Color col ) : void | ||
InvokeOnWrite ( string message, Color col ) : void | ||
Logging ( ) : System | ||
_WriteQueue ( object blocking ) : void |
public static LogException ( |
||
ex | The exception to be logged. | |
Результат | void |
public static LogMessage ( string format ) : void | ||
format | string | The format param of string.Format |
Результат | void |
public static Write ( Color color, string format ) : void | ||
color | Color | The color to write the message in. |
format | string | The format. |
Результат | void |
public static Write ( string format ) : void | ||
format | string | The format. |
Результат | void |
public static WriteDebug ( Color color, string format ) : void | ||
color | Color | The color to write in. |
format | string | |
Результат | void |
public static WriteDebug ( string format ) : void | ||
format | string | The format. |
Результат | void |
public static WriteException ( Color color, |
||
color | Color | The color to write the message in. |
ex | The exception that will be logged. | |
Результат | void |
public static WriteException ( |
||
ex | The exception that will be logged. | |
Результат | void |