Method | Description | |
---|---|---|
DisplayException ( Exception ex, bool fatal = false ) : void |
Displays an exception via the CryMono exception form.
|
|
Log ( string format, LogType type = LogType.Message ) : void |
Logs a message to the console
|
|
LogAlways ( string format ) : void |
Logs a message to the console, regardless of log_verbosity settings
|
|
LogError ( string format ) : void |
Logs an error to console
|
|
LogException ( Exception ex ) : void |
Logs an exception message to the console Useful when exceptions are caught and data is still needed from them |
|
LogStackTrace ( LogType type = LogType.Message ) : void | ||
LogWarning ( string format ) : void |
Outputs a warning message
|
Method | Description | |
---|---|---|
Debug ( ) : System | ||
UnhandledExceptionOccurred ( object sender, UnhandledExceptionEventArgs e ) : void |
public static DisplayException ( Exception ex, bool fatal = false ) : void | ||
ex | Exception | The exception that occurred |
fatal | bool | Indicates if this exception is fatal |
return | void |
public static Log ( string format, LogType type = LogType.Message ) : void | ||
format | string | |
type | LogType | |
return | void |
public static LogAlways ( string format ) : void | ||
format | string | |
return | void |
public static LogError ( string format ) : void | ||
format | string | |
return | void |
public static LogException ( Exception ex ) : void | ||
ex | Exception | |
return | void |
public static LogStackTrace ( LogType type = LogType.Message ) : void | ||
type | LogType | |
return | void |
public static LogWarning ( string format ) : void | ||
format | string | |
return | void |