(no subject)
(no subject)
- Subject: (no subject)
- From: Baiss Eric Magnusson <email@hidden>
- Date: Fri, 10 Sep 2004 11:55:22 -0700
Just a guess but are you sure you don't have another <log4j.properties>
around in the jar file or somewhere.
Hi, I'm just converting my logging to log4j and have a few questions.
I've
created a log4j.properties file and added it to the appserver target.
I get
console output as expected, but any changes I make to the properties
file
during run (in development mode) don't seem to change anything; I'm
starting simple and tried changing the levels from "info" to "debug"
etc,
but it stays at info no matter what, which leads me to believe that the
properties file isn't be read. Here's what I have in the Application
class:
Logger appLogger;
Appender appAppender;
SimpleLayout appLayout;
In main of the Application class, I have:
PropertyConfigurator.configure(argv[0]); //not at all sure about this
here
And then in the Application constructor I have:
//instantiate logger, appender, and layout
appLayout = new SimpleLayout();
appAppender = new ConsoleAppender(appLayout);
AppLogger = Logger.getLogger("appLogger");
appLogger.addAppender(appAppender);
In the log4j.properties file I have (probably wrongly)
log4j.rootAppender=WARN, appAppender
So now the questions:
(1) I feel like my properties is probably wrong. If it is, what is
wrong?
(2) Getting past number 1, how do you change these properties at
runtime?
Using the "Additional Arguments" in Monitor, directly editing the
.properties file, or some CLI way?
----
Baiss Eric Magnusson
<http://www.Track-Your-Finances.com>
<http://www.CascadeWebDesign.com>
_______________________________________________
webobjects-dev mailing list | email@hidden
Help/Unsubscribe/Archives: http://www.lists.apple.com/mailman/listinfo/webobjects-dev
Do not post admin requests to the list. They will be ignored.