I have a particular requirement in log4j. I want the user to be able to define virtually all aspects of a file appender (in this case a RollingFileAppender), except for the name and location of the log file. Ideally, I'd like the application to read the configuration file as normal, and then retrieve the file appender and override the filename for that appender. My configuration file looks as follows:
Now, in my main class, if look at which appenders are defined, I only see the CONSOLE appender (even though the log file is being written). The code I use to retrieve the appenders looks as follows:
Any idea why I'm not able to programmatically retrieve the FileOutput appender? Is there another better/simpler way to do what I'm trying to do?
Thanks.
Carol Enderlin
drifter
Ranch Hand
Joined: Oct 10, 2000
Posts: 1340
posted
0
Your fileoutput appender isn't associated with the root logger, it is associated with your other logger in your xml file. When you get all the root logger's appenders it would not be in the list.