Update of /cvsroot/http-webtest/HTTP-WebTest-Recorder/lib/HTTP/WebTest/Recorder
In directory sc8-pr-cvs1:/tmp/cvs-serv12158
Modified Files:
Exceptions.pm
Log Message:
Enable stack traces and disable refs on args in stack traces
Index: Exceptions.pm
===================================================================
RCS file: /cvsroot/http-webtest/HTTP-WebTest-Recorder/lib/HTTP/WebTest/Recorder/Exceptions.pm,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Exceptions.pm 2 Feb 2003 00:01:07 -0000 1.2
--- Exceptions.pm 4 Mar 2003 12:43:40 -0000 1.3
***************
*** 24,27 ****
--- 24,33 ----
use Exception::Class %EXC;
+ # show stack traces for uncaught exceptions
+ Exception::Class::Base->Trace(1);
+ # if refs are enabled Exception::Class breaks POE because of
+ # additional references on POE objects
+ Exception::Class::Base->NoRefs(1);
+
{
package HTTP::WebTest::Recorder::Exception;
|