User: oleg    
  Date: 00/10/19 07:26:53

  Modified:    src/main/org/jboss/logging LogStream.java
  Log:
  Now all loggers receive the full output of exception.printStackTrace() called from 
the bean.
  
  Revision  Changes    Path
  1.3       +5 -1      jboss/src/main/org/jboss/logging/LogStream.java
  
  Index: LogStream.java
  ===================================================================
  RCS file: /products/cvs/ejboss/jboss/src/main/org/jboss/logging/LogStream.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- LogStream.java    2000/08/18 03:21:06     1.2
  +++ LogStream.java    2000/10/19 14:26:52     1.3
  @@ -17,7 +17,7 @@
    *      
    *   @see <related>
    *   @author Rickard �berg ([EMAIL PROTECTED])
  - *   @version $Revision: 1.2 $
  + *   @version $Revision: 1.3 $
    */
   public class LogStream
      extends PrintStream
  @@ -46,6 +46,10 @@
      public void println(Object msg)
      {
         println(msg == null ? "null" : msg.toString());
  +   }
  +
  +   public void println(char[] msg) {
  +      println(new String(msg));
      }
   }
   
  
  
  

Reply via email to