Hi,

I have an older version of jonas in use, 2.2.7, and there this missing line
is included.
So, why did it vanish?

Thanks, Heike

------

> First of all, thank you very much for this contribution.
> Unfortunately, this change seems to be not enought and you have also
> to change the method
>   static public void error(String msg, Throwable th)
> of the class
>   org.objectweb.jonas_ejb.container.TraceEjb
> 
> Old code:
>     static public void error(String msg, Throwable th) {
>       if (logWriter!=null) {
>           logWriter.println(th);
>       }
>     }
> New code:
>     static public void error(String msg, Throwable th) {
>       if (logWriter!=null) {
>           logWriter.println(msg);
>           th.printStackTrace(logWriter);
>       }
>     }
> 
> These changes will be in the next release of JOnAS.
> 
> 
----
To unsubscribe, send email to [EMAIL PROTECTED] and
include in the body of the message "unsubscribe jonas-users".
For general help, send email to [EMAIL PROTECTED] and
include in the body of the message "help".

Reply via email to