The below code does: Whenever the log file size exceeds 5 MB, create the new log file with the name logfile.log.1
, logfile.log.2
, etc.
But how do I create our own log file name as logfile_20140530_15_31.log
using the log4perl module?
my $log_conf = "
log4perl.rootLogger = DEBUG, LOG1
log4perl.appender.LOG1 = Log::Dispatch::FileRotate
log4perl.appender.LOG1.filename = $logfile.log
log4perl.appender.LOG1.mode = append
log4perl.appender.LOG1.autoflush = 1
log4perl.appender.LOG1.size = 1024000
log4perl.appender.LOG1.max = 5
log4perl.appender.LOG1.layout = Log::Log4perl::Layout::PatternLayout
log4perl.appender.LOG1.layout.ConversionPattern = \%d{yyyy-MM-dd HH:mm:ss}\%P|\%p|\%m|\%n
";
Log::Log4perl::init(\$log_conf);
my $logger = Log::Log4perl->get_logger();
$logger->info("error ");
From the Documentation of Log::Dispatch::FileRotate :
Perhaps you could replace
size
&max
withTZ
&DatePattern
.