C# Class org.GraphDefined.Vanaheimr.Illias.DebugX

Helpers for the normal Debug class.
Mostrar archivo Open project: Vanaheimr/Illias

Public Methods

Method Description
Log ( String Text ) : void

Write the current timestamp and given text to Debug.

Log ( this Exception, String Source ) : void

Write the current timestamp and given exception to Debug.

LogT ( String Text ) : void

Write the current timestamp and given text to Debug.

Method Details

Log() public static method

Write the current timestamp and given text to Debug.
public static Log ( String Text ) : void
Text String The text to be logged.
return void

Log() public static method

Write the current timestamp and given exception to Debug.
public static Log ( this Exception, String Source ) : void
Exception this The exception.
Source String The source of the exception.
return void

LogT() public static method

Write the current timestamp and given text to Debug.
public static LogT ( String Text ) : void
Text String The text to be logged.
return void