Subject: | mode => 'append' should create file if it doesn't exist just like Log::Log4perl::Appender::File |
Say I want this:
my $file = Log::Log4perl::Appender::File::FixedSize->new(
filename => '/tmp/pvm.log',
size => '10kb',
mode => 'append'
);
Then with 0.01 I have to touch /tmp/pvm.log first. That is not required with Log::Log4perl::Appender::File - it just creates the file if it doesn't exist already.
I mark this bug as important because I have no way of using it like L::L::A::File, where it appends to the file if it exists and creates it if it doesn't.