diff options
author | Florian Pritz <bluewind@xinu.at> | 2018-12-17 00:42:39 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2018-12-17 00:42:39 +0100 |
commit | a64d07890544d2d2a503c52a6d92ff3e064c5585 (patch) | |
tree | 54273a3e122ddd30986adbd96948751e7dab4e16 /lib | |
parent | 135686539f7d0e8c51555e37a334b9556fd55a19 (diff) | |
download | App-ArchLinux-PackagerTools-a64d07890544d2d2a503c52a6d92ff3e064c5585.tar.gz App-ArchLinux-PackagerTools-a64d07890544d2d2a503c52a6d92ff3e064c5585.tar.xz |
Add debug logging to CPAN constructor
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/App/ArchLinux/PackagerTools/CPAN.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/App/ArchLinux/PackagerTools/CPAN.pm b/lib/App/ArchLinux/PackagerTools/CPAN.pm index e7521b6..2a2e7a2 100644 --- a/lib/App/ArchLinux/PackagerTools/CPAN.pm +++ b/lib/App/ArchLinux/PackagerTools/CPAN.pm @@ -51,6 +51,7 @@ method new_no_defaults($class: $deps = {}) { $self->{dist_lc_map} = {}; $self->{dists} = {}; $deps->{context}->{__PACKAGE__} = $self; + $log->debug("Initialized new CPAN object"); return $self; } |