diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2003-10-10 11:08:42 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2003-10-10 11:08:42 +0000 |
commit | 9248bb78f5554c08817cc8c34458a9204ce23961 (patch) | |
tree | 1859e4ca4d66ba08d2451a747e6ca53e1860dbdc /perl-install/class_discard.pm | |
parent | 3857b5ebc1e3c033eb03fcfaac11350fe3d3ed85 (diff) | |
download | drakx-9248bb78f5554c08817cc8c34458a9204ce23961.tar drakx-9248bb78f5554c08817cc8c34458a9204ce23961.tar.gz drakx-9248bb78f5554c08817cc8c34458a9204ce23961.tar.bz2 drakx-9248bb78f5554c08817cc8c34458a9204ce23961.tar.xz drakx-9248bb78f5554c08817cc8c34458a9204ce23961.zip |
give more details when using class_discard
Diffstat (limited to 'perl-install/class_discard.pm')
-rw-r--r-- | perl-install/class_discard.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/class_discard.pm b/perl-install/class_discard.pm index 7ecd1375b..6ca677e9d 100644 --- a/perl-install/class_discard.pm +++ b/perl-install/class_discard.pm @@ -5,7 +5,7 @@ use log; sub new { bless {}, "class_discard" } sub AUTOLOAD { - log::l("class_discard: $AUTOLOAD called at ", caller); + log::l("class_discard: $AUTOLOAD called at ", caller, ", params ", join(', ', @_)); } 1; |