Subject: | $port not truly ignored when using LOG_UNIX |
use strict;
use warnings;
use Log::Syslog::Fast ":all";
Log::Syslog::Fast->new( LOG_UNIX, "/dev/log", undef, LOG_USER, LOG_INFO,
"foo", "bar" );'
Gives warning about $port param:
"Use of uninitialized value in subroutine entry at -e line 1."
Documentation says that $port param is ignored for LOG_UNIX so type
checking should not take place.