I'd like to write log to 2 different log files from the same process.
is that possible thing to do using log4net?
I'll need to write separate messages to each log file. how can I write a message to a specific appender?
|
I'd like to write log to 2 different log files from the same process. is that possible thing to do using log4net? I'll need to write separate messages to each log file. how can I write a message to a specific appender? |
|||||
|
|
Yes, just add multiple FileAppenders to your logger. For example:
|
|||
|
These answers were helpful, but I wanted to share my answer with both the app.config part and the c# code part, so there is less guessing for the next person.
then, in code:
Here c:/Console.txt will contain "Processing" ... and \SummaryFile.log will contain "Processing2" |
|||||
|
|
Vinay is correct. In answer to your comment in his answer, one way you can do it is as follows:
This is how I have done it in the past. Then something like this for the other log:
And you can get your normal logger as follows:
Read the loggers and appenders section of the documentation to understand how this works. |
|||||||
|
|
I wanted to log all messages to root logger, and to have a separate log with errors, here is how it can be done:
Notice the use of filter element. |
|||
|
|