C# 클래스 org.GraphDefined.Vanaheimr.Illias.DebugX

Helpers for the normal Debug class.
파일 보기 프로젝트 열기: Vanaheimr/Illias

공개 메소드들

메소드 설명
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.

메소드 상세

Log() 공개 정적인 메소드

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

Log() 공개 정적인 메소드

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.
리턴 void

LogT() 공개 정적인 메소드

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