in reply to How to pick an appender selectively in Log::Log4perl

Create a separate category that only writes to Logfile
my %loggerConfig = ( "log4perl.category.default_logger" => "INFO, Stdout, SYSLOG, Logfile +", "log4perl.category.file.only" => "INFO, Logfile", );
Then to use it:
my $log = Log::Log4perl->get_logger("file.only"); $log->info('whatever');

Replies are listed 'Best First'.
Re^2: How to pick an appender selectively in Log::Log4perl
by hellosarathy (Novice) on Feb 11, 2016 at 17:43 UTC
    Thanks.