summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
authorGuillaume Cottenceau <gc@mandriva.com>2003-10-10 11:08:42 +0000
committerGuillaume Cottenceau <gc@mandriva.com>2003-10-10 11:08:42 +0000
commit9248bb78f5554c08817cc8c34458a9204ce23961 (patch)
tree1859e4ca4d66ba08d2451a747e6ca53e1860dbdc /perl-install
parent3857b5ebc1e3c033eb03fcfaac11350fe3d3ed85 (diff)
downloaddrakx-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')
-rw-r--r--perl-install/class_discard.pm2
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;