We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We should consider enforcing three args open in Log4perl
this is coming from sub file_open Log::Log4perl::Appender::File
sub file_open
eval { if($self->{syswrite}) { sysopen $fh, "$self->{filename}", $sysmode or die "Can't sysopen $self->{filename} ($!)"; } else { open $fh, "$arrows$self->{filename}" or die "Can't open $self->{filename} ($!)"; } };
The text was updated successfully, but these errors were encountered:
Pull requests welcome!
Sorry, something went wrong.
Use three args open
75a80b4
Fix mschilli#113 Prefer using three args open over the two args form.
@mohawk2 just sent a PR with these changes
Successfully merging a pull request may close this issue.
We should consider enforcing three args open in Log4perl
this is coming from
sub file_open
Log::Log4perl::Appender::FileThe text was updated successfully, but these errors were encountered: