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
In the log file rotation section of the README, it says the following code will result in daily logging:
var accessLogStream = FileStreamRotator.getStream({ filename: logDirectory + '/access-%DATE%.log', frequency: 'daily', verbose: false })
However, the output is a minute-by-minute log. It should be updated to:
var accessLogStream = FileStreamRotator.getStream({ filename: logDirectory + '/access-%DATE%.log', frequency: 'daily', verbose: false, date_format: 'YYYYMMDD' });
This produces a day-by-day log.
The text was updated successfully, but these errors were encountered:
9f5a2ee
Thanks for the heads-up!
Sorry, something went wrong.
dougwilson
No branches or pull requests
In the log file rotation section of the README, it says the following code will result in daily logging:
However, the output is a minute-by-minute log. It should be updated to:
This produces a day-by-day log.
The text was updated successfully, but these errors were encountered: