Re: Add new log programmatically and remove when finished

2009-04-23 Thread David Gerler
Actually, I was thinking more of 1. check for existing logger ( message.loc1) If (!exists) create new logger 2. add appender 3 log messages 4 destroy appender 5 release logger. I'm not sure why that is such bad design. (I only have a few years programming and self taught). So, given that

Re: Add new log programmatically and remove when finished

2009-04-20 Thread Daniel Marohn
Hi One of the basic log4net things is the named logger. If you are using the same loggername, you will allways work on the same instance of the logger. If you configured a named logger once, you do not need to do this again. The repository stores the reference to the once configured logger. I gue

Re: Add new log programmatically and remove when finished

2009-04-19 Thread David Gerler
As I am trying to work on this project, I am realizing I need to provide more info. The project is a web service that recieves data from 120 locations simultaneously. The problem I have is that all the data gets lumped into 3 primary logfiles. There are 10 threads handling data from these various

Add new log programmatically and remove when finished

2009-04-18 Thread David Gerler
I have an application that receives data from many locations. I have log4net writing to several logs already and I want that to continue, but I also need to separate some of the logging out by the location the data comes from. What's the best way to do it? I found this message in the archive,