Subject: | Wrong catdir and catfile in Plugin::Logger |
There's a bug in POE::Component::IRC::Plugin::Logger that prevents the
module from opening any files, caused by importing the wrong catdir and
catfile functions from File::Spec.
Replacing the following line:
use File::Spec qw(catdir catfile);
With:
use File::Spec::Functions qw(catdir catfile);
Did the trick on my system.