-
Notifications
You must be signed in to change notification settings - Fork 567
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
Event and Lifecycle spans should not be INFO level #2202
Comments
NickLarsenNZ
changed the title
Event tracing should not be INFO level
Event and Lifecycle spans should not be INFO level
Jun 11, 2022
NickLarsenNZ
added a commit
to NickLarsenNZ/druid
that referenced
this issue
Jun 11, 2022
NickLarsenNZ
added a commit
to NickLarsenNZ/druid
that referenced
this issue
Jun 11, 2022
Something else that might be useful is to allow the user to pass a tracing level to the debug tracer, e.g. you would do, AppLauncher::with_window(my_window)
.log_to_console(LevelFilter::DEBUG) |
NickLarsenNZ
added a commit
to NickLarsenNZ/druid
that referenced
this issue
Jun 21, 2022
NickLarsenNZ
added a commit
to NickLarsenNZ/druid
that referenced
this issue
Jul 5, 2022
cmyr
pushed a commit
that referenced
this issue
Jul 8, 2022
* change into_span! to trace_span! to reduce noise #2202 * add to changelog and authors list
xarvic
pushed a commit
to xarvic/druid
that referenced
this issue
Jul 29, 2022
* change into_span! to trace_span! to reduce noise linebender#2202 * add to changelog and authors list
xarvic
pushed a commit
to xarvic/druid
that referenced
this issue
Jul 29, 2022
* change into_span! to trace_span! to reduce noise linebender#2202 * add to changelog and authors list
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
These cause a lot of noise when implementing tracing output:
druid/druid/src/window.rs
Line 288 in 94b6ce5
druid/druid/src/core.rs
Line 418 in dda0073
For example, when I move the mouse across the
Window
, a tonne ofINFO
level logs are outputted. I think these should beTRACE
due to how noisy they can be. Note: some of the events are indeedTRACE
.The text was updated successfully, but these errors were encountered: