-
Notifications
You must be signed in to change notification settings - Fork 15
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
Repeater: consider reducing nack logging #48
Comments
I think it is reasonable to keep existing behaviour and print this at debug level. As long as we fix filename logging (#222) then nobody should need to turn on debug level in production, and then the current nack logging is harmless. |
It would be best to make the period longer though. 300ms is too often. It makes debugging a pain because of how chatty it is.
…On 27 Oct 2021, 21:41 +0100, Ian Streeter ***@***.***>, wrote:
I think it is reasonable to keep existing behaviour and print this at debug level.
As long as we fix filename logging (#222) then nobody should need to turn on debug level in production, and then the current nack logging is harmless.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or unsubscribe.
Triage notifications on the go with GitHub Mobile for iOS or Android.
|
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Repeater checks every time if event is old enough to make an insertion attempt. However, it checks it after every pull which happens very often. As a result we have messages like:
Printed every 300 milliseconds.
However, this is logged with
DEBUG
level, which means user can technically get rid of it.The text was updated successfully, but these errors were encountered: