vote up 0 vote down star

We are using log4net (replacing nLog) in our Asp.Net web application. nLog had a useful feature that would allow us to create a log file per user - which is helpful for organizing and locating the log statements.

Does anyone have any ideas on how to do this with log4net?

flag

2 Answers

vote up 4 vote down

Instead of logging to a file, think about logging to a database table and have the user id part of the logged data. This way you can do selects against the table based on the user (or users) and see only their data. Probably also want to log the session id, too, to make session based queries easy.

link|flag
vote up 1 vote down

One way would be to write your own appender such deriving from RollingFileAppender

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.