You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Switching the log file name using the file_switch() method, creates a new logfile even if the create_at_logtime option is set to true. Maybe the line 271 in Log::Log4perl::Appender::File should be changed from
Log-Log4perl-1.54
Switching the log file name using the
file_switch()
method, creates a new logfile even if thecreate_at_logtime
option is set to true. Maybe the line 271 inLog::Log4perl::Appender::File
should be changed from$self->file_open();
to
$self->file_open() unless $self->{create_at_logtime};
The text was updated successfully, but these errors were encountered: