Property | Type | Description | |
---|---|---|---|
Instance |
Method | Description | |
---|---|---|
Debug ( string message ) : void |
Write an entry that helps when debugging code.
|
|
Debug ( string message, |
Write an entry that helps when debugging code.
|
|
Error ( string message ) : void |
Something went wrong, but the application do not need to die. The current thread/request cannot continue as expected.
|
|
Error ( string message, |
Something went wrong, but the application do not need to die. The current thread/request cannot continue as expected.
|
|
Fatal ( string message ) : void |
Something went very wrong, application might not recover.
|
|
Fatal ( string message, |
Something went very wrong, application might not recover.
|
|
Info ( string message ) : void |
Informational message, needed when helping customer to find a problem.
|
|
Info ( string message, |
Informational message, needed when helping customer to find a problem.
|
|
Trace ( string message ) : void |
Write a entry needed when following through code during hard to find bugs.
|
|
Trace ( string message, |
Write a entry needed when following through code during hard to find bugs.
|
|
Warning ( string message ) : void |
Something is not as we expect, but the code can continue to run without any changes.
|
|
Warning ( string message, |
Something is not as we expect, but the code can continue to run without any changes.
|
public Debug ( string message, |
||
message | string | Log message |
err | Exception being logged. | |
return | void |
public Error ( string message, |
||
message | string | Log message |
err | Exception being logged. | |
return | void |
public Fatal ( string message, |
||
message | string | Log message |
err | Exception being logged. | |
return | void |
public Info ( string message, |
||
message | string | Log message |
err | Exception being logged. | |
return | void |
public Trace ( string message, |
||
message | string | Log message |
err | Exception being logged. | |
return | void |
public Warning ( string message ) : void | ||
message | string | Log message |
return | void |
public Warning ( string message, |
||
message | string | Log message |
err | Exception being logged. | |
return | void |