Property | Type | Description | |
---|---|---|---|
IsQuiet | bool |
Method | Description | |
---|---|---|
DebugLog ( string Message, int Verbosity = 1 ) : void |
Debug log
|
|
DebugWrite ( string Message, int Verbosity = 1 ) : void |
Debug log
|
|
ErrorLog ( string Message ) : bool |
Log the specified message
|
|
Log ( string Message, |
Log the specified Message and MessageType.
|
|
Log ( string Message, bool Warning = false ) : bool |
Log the specified message
|
|
WarningLog ( string Message ) : bool |
Log the specified message
|
|
WriteNow ( string Message, |
Writes the message immediately to console with no thread sync
|
|
WriteNow ( string Message, bool Warning = false ) : bool |
Writes the message immediately to console with no thread sync
|
public static DebugLog ( string Message, int Verbosity = 1 ) : void | ||
Message | string | |
Verbosity | int | |
return | void |
public static DebugWrite ( string Message, int Verbosity = 1 ) : void | ||
Message | string | |
Verbosity | int | |
return | void |
public static ErrorLog ( string Message ) : bool | ||
Message | string | /// Message that you want to log. /// |
return | bool |
public static Log ( string Message, |
||
Message | string |
/// If set to |
MessageType |
/// If set to |
|
return | bool |
public static Log ( string Message, bool Warning = false ) : bool | ||
Message | string | /// Message that you want to log. /// |
Warning | bool | /// If this is true the message will be classified as a warning. /// |
return | bool |
public static WarningLog ( string Message ) : bool | ||
Message | string | /// Message that you want to log. /// |
return | bool |
public static WriteNow ( string Message, |
||
Message | string |
/// If set to |
MessageType |
/// If set to |
|
return | bool |
public static WriteNow ( string Message, bool Warning = false ) : bool | ||
Message | string | /// Message that you want to log. /// |
Warning | bool | /// If this is true the message will be classified as a warning. /// |
return | bool |