Method | Description | |
---|---|---|
ComLogUtil ( ) : System |
Initializes a new instance of the ComLogUtil class. Log file will be created in a "Logs" folder located alongside the running DLL.
|
|
LogDebug ( string className, string publicMethodName, string message ) : void |
Logs the info.
|
|
LogError ( string className, string publicMethodName, string parameters, |
Logs the error.
|
|
LogError ( string className, string publicMethodName, string parameters, string message, |
Logs the error.
|
|
LogInfo ( string className, string publicMethodName, string message ) : void |
Logs the info.
|
|
LogParameters ( string className, string publicMethodName, string parameters ) : void |
Logs the parameters.
|
|
LogWarning ( string className, string publicMethodName, string message ) : void |
Logs the warning.
|
Method | Description | |
---|---|---|
Log ( LogLevel level, string message ) : void |
Logs the specified message by creating new log file or appending message.
|
public LogDebug ( string className, string publicMethodName, string message ) : void | ||
className | string | Name of the source class. |
publicMethodName | string | Name of the public method. |
message | string | The message. |
return | void |
public LogError ( string className, string publicMethodName, string parameters, |
||
className | string | Name of the source class. |
publicMethodName | string | Name of the public method. |
parameters | string | The method parameters. |
ex | The exception. | |
return | void |
public LogError ( string className, string publicMethodName, string parameters, string message, |
||
className | string | Name of the source class. |
publicMethodName | string | Name of the public method. |
parameters | string | The method parameters. |
message | string | |
ex | The exception. | |
return | void |
public LogInfo ( string className, string publicMethodName, string message ) : void | ||
className | string | Name of the source class. |
publicMethodName | string | Name of the public method. |
message | string | The message. |
return | void |
public LogParameters ( string className, string publicMethodName, string parameters ) : void | ||
className | string | Name of the class. |
publicMethodName | string | Name of the public method. |
parameters | string | The parameters. |
return | void |
public LogWarning ( string className, string publicMethodName, string message ) : void | ||
className | string | Name of the source class. |
publicMethodName | string | Name of the public method. |
message | string | The message. |
return | void |