Johannes 
 
Thanks for all the options!
 
For now I am just sending it to screen while I am debugging;
but you're right that it should go to a log file for the deployed 
application.  
 
Is there a way to send it a log file other than the default one?
ie. can I specify a different file name?
 
Derek

>>> On 2008/03/13 at 12:59, in message <[EMAIL PROTECTED]>, "Johannes Textor" 
>>> <[EMAIL PROTECTED]> wrote:
not sure where the "print" output ends up, though. I'd use

try {
   //do something stupid!   
} catch(err) {
   cocoon.log.error( err ); 
}

or, if you want it less verbose, 

try {
   //do something stupid!   
} catch(err) {
   cocoon.log.error( err.getMessage() ); 
}

In these cases the error will end up in one of the log files in WEB-INF/log, 
depending on your version.

If you want to do it "the wrong way" and send the error directly to stdout: 

try {
   //do something stupid!   
} catch(err) {
  err.printStackTrace();
}

HTH,
Johannes

-------- Original-Nachricht --------
> Datum: Thu, 13 Mar 2008 12:15:55 +0200
> Von: Andre Juffer <[EMAIL PROTECTED]>
> An: [email protected] 
> Betreff: Re: Catching errors in flowscript

> Derek Hohls wrote:
> > Using C2.1.8
> >  
> > If I have the following:
> >  
> >  try {
> >    //do something stupid!   
> >  } catch(err) {
> >   print ("Your error: "+err.description)
> >  }
> 
> err is an Java exception or a javascript Error, so err.message or 
> err.getMessage() should work.
> 
> >  
> > Then the print statement does not yield the error description;
> > is there some way of doing this?
> >  
> > Thanks
> > Derek




-- 
This message is subject to the CSIR's copyright terms and conditions, e-mail 
legal notice, and implemented Open Document Format (ODF) standard. 
The full disclaimer details can be found at 
http://www.csir.co.za/disclaimer.html.

This message has been scanned for viruses and dangerous content by MailScanner, 
and is believed to be clean.  MailScanner thanks Transtec Computers for their 
support.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to