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
Description
lumberjack/lumberjack.go
Line 269 in 4cb27fc
stat <filepath>: no such file or directory
Fix - documentation here suggests we should use errors.Is(err, fs.ErrNotExist).
errors.Is(err, fs.ErrNotExist)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
lumberjack/lumberjack.go
Line 269 in 4cb27fc
This does not handle
stat <filepath>: no such file or directory
error when a file is not present at the location.Fix - documentation here suggests we should use
errors.Is(err, fs.ErrNotExist)
.The text was updated successfully, but these errors were encountered: