C# Class CryEngine.API.Logging

ファイルを表示 Open project: samneirinck/cemono

Public Methods

Method Description
CryWarning ( string format ) : void

Logs a warning message to the console

Log ( string format ) : void

Logs a message to the console

LogAlways ( string format ) : void

Logs a message to the console, regardless of log_verbosity settings

Private Methods

Method Description
_CryWarning ( string msg ) : void
_Log ( string msg ) : void
_LogAlways ( string msg ) : void

Method Details

CryWarning() public static method

Logs a warning message to the console
public static CryWarning ( string format ) : void
format string
return void

Log() public static method

Logs a message to the console
public static Log ( string format ) : void
format string
return void

LogAlways() public static method

Logs a message to the console, regardless of log_verbosity settings
public static LogAlways ( string format ) : void
format string
return void