C# Class EDebug, silverscreen

A simple class for toggle-able debug messages. Debug messages for editor tools are useful when developing the tool itself, but annoying for end users.
Show file Open project: mminer/silverscreen Class Usage Examples

Public Methods

Method Description
Break ( ) : void
Log ( object message ) : void
Log ( object message, Object context ) : void
LogError ( object message ) : void
LogError ( object message, Object context ) : void
LogWarning ( object message ) : void
LogWarning ( object message, Object context ) : void

Method Details

Break() public static method

public static Break ( ) : void
return void

Log() public static method

public static Log ( object message ) : void
message object
return void

Log() public static method

public static Log ( object message, Object context ) : void
message object
context Object
return void

LogError() public static method

public static LogError ( object message ) : void
message object
return void

LogError() public static method

public static LogError ( object message, Object context ) : void
message object
context Object
return void

LogWarning() public static method

public static LogWarning ( object message ) : void
message object
return void

LogWarning() public static method

public static LogWarning ( object message, Object context ) : void
message object
context Object
return void