log4net - want to create a log file per web application user - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T13:55:22Zhttp://stackoverflow.com/feeds/question/307279http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/307279/log4net-want-to-create-a-log-file-per-web-application-user0log4net - want to create a log file per web application userMrJeepster2008-11-20T23:26:04Z2008-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#3072964Answer by tvanfosson for log4net - want to create a log file per web application usertvanfosson2008-11-20T23:35:59Z2008-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#3074511Answer by Preet Sangha for log4net - want to create a log file per web application userPreet Sangha2008-11-21T00:51:57Z2008-11-21T00:51:57Z<p>One way would be to write your own appender such deriving from RollingFileAppender</p>