X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=FS%2FFS%2FRecord.pm;h=946e39dd551d11c3b0ed84b717d88d33d6657d55;hp=dd87e5a9a8a6b8410e0ea5028c71bc0d0f72d547;hb=f11341c6ca588f1ff5e46a857540e88d49d7647a;hpb=402ac7d54021caf6797efc47d33983be51eef049 diff --git a/FS/FS/Record.pm b/FS/FS/Record.pm index dd87e5a9a..946e39dd5 100644 --- a/FS/FS/Record.pm +++ b/FS/FS/Record.pm @@ -986,7 +986,14 @@ sub check { for ($self->getfield($field)) { # See notes on check_block in FS::part_virtual_field. eval $self->pvf($field)->check_block; - return $@ if $@; + if ( $@ ) { + #this is bad, probably want to follow the stack backtrace up and see + #wtf happened + my $err = "Fatal error checking $field for $self"; + cluck "$err: $@"; + return "$err (see log for backtrace): $@"; + + } $self->setfield($field, $_); } }