
|
If you were logged in you would be able to see more operations.
|
|
|
| Resolution Date: |
30/Mar/06 12:04 AM
|
|
The performance of the ILog.xxxFormat methods can be improved.
1) Add method overloads for common numbers of arguments:
void DebugFormat(string format, object arg0);
void DebugFormat(string format, object arg0, object arg1);
void DebugFormat(string format, object arg0, object arg1, object arg2);
2) Delay formatting of the message until after the appenders filters have run.
|
|
Description
|
The performance of the ILog.xxxFormat methods can be improved.
1) Add method overloads for common numbers of arguments:
void DebugFormat(string format, object arg0);
void DebugFormat(string format, object arg0, object arg1);
void DebugFormat(string format, object arg0, object arg1, object arg2);
2) Delay formatting of the message until after the appenders filters have run. |
Show » |
|