diff options
-rw-r--r-- | FS/FS/part_pkg.pm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/FS/FS/part_pkg.pm b/FS/FS/part_pkg.pm index 9392f4bf4..cef4a612a 100644 --- a/FS/FS/part_pkg.pm +++ b/FS/FS/part_pkg.pm @@ -136,7 +136,9 @@ the scalar will be updated with the custnum value from the cust_pkg record. sub insert { my $self = shift; my %options = @_; - warn "FS::part_pkg::insert called on $self with options %options" if $DEBUG; + warn "FS::part_pkg::insert called on $self with options ". + join(', ', map "$_=>$options{$_}", keys %options) + if $DEBUG; local $SIG{HUP} = 'IGNORE'; local $SIG{INT} = 'IGNORE'; |