-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
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
logging frequency configuration #449
Comments
What do you mean exactly by logging frequency? I don't recall any setting that clears the logs in the platform itself, perhaps there's a cronjob that you missed? |
I do not find either a cron referring to it. i mean with logging frequency, how quickly a log message is written to the lavarel.log. |
That's weird, I have worked with Laravel for quite a while now over the last 3 years and I've never encountered a logging buffer that keeps logs in that buffer before writing it to the default log file. The logging is always instant. Keeping it somewhere would also require some sort of temporary database or queue, which would need to be configured. There's none of that sort in the application either. You can check this quite easily, add a "\Log::info("hello world")" somewhere in a controller or boot method of the framework, then check the laravel.log for that line, it should be there instantly. |
Hi,
where do I find the logging frequency configuration. On our system it flushes every 30 minutes, which is rather annoying.
kr,
Bert
The text was updated successfully, but these errors were encountered: