package Logger; use warnings; use strict; use Exporter qw{ import }; our @EXPORT = qw{ log_warn }; sub log_warn { warn @_ } __PACKAGE__