log4net - want to create a log file per web application user - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T13:55:22Z http://stackoverflow.com/feeds/question/307279 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/307279/log4net-want-to-create-a-log-file-per-web-application-user 0 log4net - want to create a log file per web application user MrJeepster 2008-11-20T23:26:04Z 2008-11-21T00:51:57Z <p>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.</p> <p>Does anyone have any ideas on how to do this with log4net?</p> http://stackoverflow.com/questions/307279/log4net-want-to-create-a-log-file-per-web-application-user/307296#307296 4 Answer by tvanfosson for log4net - want to create a log file per web application user tvanfosson 2008-11-20T23:35:59Z 2008-11-20T23:35:59Z <p>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.</p> http://stackoverflow.com/questions/307279/log4net-want-to-create-a-log-file-per-web-application-user/307451#307451 1 Answer by Preet Sangha for log4net - want to create a log file per web application user Preet Sangha 2008-11-21T00:51:57Z 2008-11-21T00:51:57Z <p>One way would be to write your own appender such deriving from RollingFileAppender</p>