Property | Type | Description | |
---|---|---|---|
log | Logger | ||
name | string | ||
verbosity | VerbosityLevel |
Method | Description | |
---|---|---|
Debug ( string msg ) : void |
Write a string of this particular verbosity. This will not output the string unless the verbosity is greater than or equal to this object's threshold. This prepends the level of the message and the name of this Logger.
|
|
Error ( string msg ) : void |
Write a string of this particular verbosity. This will not output the string unless the verbosity is greater than or equal to this object's threshold. This prepends the level of the message and the name of this Logger.
|
|
Info ( string msg ) : void |
Write a string of this particular verbosity. This will not output the string unless the verbosity is greater than or equal to this object's threshold. This prepends the level of the message and the name of this Logger.
|
|
Logger ( ) : System |
Default constructor.
|
|
Logger ( string name ) : System |
Construct and set name.
|
|
TestSelf ( ) : bool |
A simple static self test method.
|
|
Warn ( string msg ) : void |
Write a string of this particular verbosity. This will not output the string unless the verbosity is greater than or equal to this object's threshold. This prepends the level of the message and the name of this Logger.
|
|
Write ( string msg ) : void |
Write a string with no verbosity checking and no formatting.
|
|
WriteLine ( string msg ) : void |
Write a line with no verbosity checking and no formatting.
|
public Logger ( string name ) : System | ||
name | string | The name for this logger. This name /// is prepended to output messages (except Out messages). |
return | System |
public WriteLine ( string msg ) : void | ||
msg | string | The format string. |
return | void |