Log Message:
-----------
toned down the warning to avoid clogging the log file
Modified Files:
--------------
webwork2/lib:
WeBWorK.pm
Revision Data
-------------
Index: WeBWorK.pm
===================================================================
RCS file: /webwork/cvs/system/webwork2/lib/WeBWorK.pm,v
retrieving revision 1.103
retrieving revision 1.104
diff -Llib/WeBWorK.pm -Llib/WeBWorK.pm -u -r1.103 -r1.104
--- lib/WeBWorK.pm
+++ lib/WeBWorK.pm
@@ -359,7 +359,10 @@
writeTimingLogEntry($ce, "[".$r->uri."]", sprintf("runTime = %.3f sec", $cg_duration)." ".$ce->{dbLayoutName}, "");
debug("returning result: " . (defined $result ? $result : "UNDEF") . "\n");
- warn "this warning is needed to zero out \@LimitedPolynomial::BOP::ISA @LimitedPolynomial::BOP::ISA no-one knows why";
+ @LimitedPolynomial::BOP::ISA; #FIXME this is needed to zero out
+ #\@LimitedPolynomial::BOP::ISA and prevent error messages of the form
+ #[Sat May 15 14:23:08 2010] [warn] [client 127.0.0.1] [/webwork2/gage_course/test_set/6/]
+ #Can't locate package LimitedPolynomial::BOP for @LimitedPolynomial::BOP::add::ISA at /opt/webwork/webwork2/lib/Apache/WeBWorK.pm line 115., referer: http://localhost/webwork2/gage_course/test_set/6/ no one knows why
return $result;
}
|