From f11341c6ca588f1ff5e46a857540e88d49d7647a Mon Sep 17 00:00:00 2001 From: ivan Date: Tue, 15 Jun 2004 10:59:16 +0000 Subject: [PATCH] add stack backtrace to fatal problems in virtual field check --- FS/FS/Record.pm | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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, $_); } } -- 2.11.0