1 Reply Latest reply on Jul 19, 2007 4:43 AM by gavin.king

    possible bug in ExceptionFilter

    matt.drees

      line 128:

       catch (Exception ere)
       {
       log.error("could not destroy contexts", e);
       }
      


      I'm guessing you meant
       catch (Exception ere)
       {
       log.error("could not destroy contexts", ere);
       }