Well, I did finally get the logging to work. For some reason a simple
PrintWriter was not printing anything to the log:
PrintWriter logWriter = new PrintWriter(new
FileOutputStream("castor.log"));
I had to create the PrintWriter using org.exolab.castor.util.Logger:
PrintWriter logWriter = new org.exolab.castor.util.Logger(new
FileOutputStream("castor.log"));
Anyway, even after I got the logging to work, it was not of much help! I
got only one line in the log file:
Loading mapping descriptors from file:/C:/project/mapping.xml
I was expecting to see a lot more :-(.
Naresh
-----Original Message-----
From: tek1 [mailto:[EMAIL PROTECTED]
Sent: Saturday, February 22, 2003 11:28 PM
To: [EMAIL PROTECTED]
Subject: Re: [castor-dev] How to turn on logging?
actually, i was working on the same thing today.
did you try:
http://www.mail-archive.com/[EMAIL PROTECTED]/msg02715.html
? it solved my problem, but just have to update it from using
"Category"
to "Logger" since "Category" is now deprecated...
At 20:21 03/02/22 -0500, you wrote:
>How do I turn on logging in Castor? I am calling setLogWriter( ) for my
>mapping and unmarshaller objects, but the generated log files are zero
>length - no log messages!
>
>PS. Does this have to do anything with JDO vs XML mapping? All
>references
>I found to logging were in the context of JDO and I am using XML
mapping.
>
>Thanks.
>Naresh
-----------------------------------------------------------
If you wish to unsubscribe from this mailing, send mail to
[EMAIL PROTECTED] with a subject of:
unsubscribe castor-dev
-----------------------------------------------------------
If you wish to unsubscribe from this mailing, send mail to
[EMAIL PROTECTED] with a subject of:
unsubscribe castor-dev