Re: log4j initialization problem
Re: log4j initialization problem
- Subject: Re: log4j initialization problem
- From: Chuck Hill <email@hidden>
- Date: Wed, 15 Aug 2007 09:05:59 -0700
On Aug 15, 2007, at 8:22 AM, James Cicenia wrote:
Hello -
I am now getting serious. ;-)
I want to use logging and in particular log4j.
In my Application constructor I have:
String log4jFile = resourceManager().pathURLForResourceNamed
("log4j.properties", null, null).toString();
Try
URL log4jFile = resourceManager().pathURLForResourceNamed
("log4j.properties", null, null);
FWIW, I find the XML format to be much easier to understand and
maintain.
Chuck
then I have:
System.out.println("Log4j file (from .woa): " + log4jFile);
PropertyConfigurator.configure(log4jFile);
log = Logger.getLogger( Application.class );
log.debug("Log4j has been initialized");
And I get this outputed in my current log:
Log4j file (from .woa): file:/usr/local/apple/Library/WebObjects/
Applications/Blakey.woa/Contents/Resources/log4j.properties
log4j:ERROR Could not read configuration file [file:/usr/local/
apple/Library/WebObjects/Applications/Blakey.woa/Contents/Resources/
log4j.properties].
java.io.FileNotFoundException: file:/usr/local/apple/Library/
WebObjects/Applications/Blakey.woa/Contents/Resources/
log4j.properties (No such file or directo
ry)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.<init>(FileInputStream.java:106)
at java.io.FileInputStream.<init>(FileInputStream.java:66)
at org.apache.log4j.PropertyConfigurator.doConfigure
(PropertyConfigurator.java:297)
at org.apache.log4j.PropertyConfigurator.configure
(PropertyConfigurator.java:315)
at com.tos.Application.<init>(Application.java:242)
HOWEVER that file referenced is there and with completely opened
permissions (777)
What obvious thing am I doing wrong?
Thanks
James Cicenia
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
40global-village.net
This email sent to email@hidden
--
Practical WebObjects - for developers who want to increase their
overall knowledge of WebObjects or who are trying to solve specific
problems.
http://www.global-village.net/products/practical_webobjects
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden