| Commit-Queue | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
+ssid for base/trace_event/builtin_categories.h
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
perfetto::Category("optimization_guide.debug").SetTags("debug"),consider making this TRACE_DISABLED_BY_DEFAULT if you think this is going to add a lot of events to trace - maybe 10s of events per second or more, no struct guidelines, just for usability
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Commit-Queue | +2 |
perfetto::Category("optimization_guide.debug").SetTags("debug"),consider making this TRACE_DISABLED_BY_DEFAULT if you think this is going to add a lot of events to trace - maybe 10s of events per second or more, no struct guidelines, just for usability
IIUC "SetTags("debug") already disables it by default, and is preferred now?
// Prefer using ".debug" suffix along with "debug" tag over the legacy
// `DISABLED_BY_DEFAULT()` when creating new debug categories.
// Example: perfetto::Category("cc.debug").SetTags("debug")
// `TRACE_DISABLED_BY_DEFAULT("my_category")` adds
// `disabled-by-default-my_category` prefix and “slow” tag to the category,
// but it doesn’t align with the naming convention, and makes the call sites
// more cluttered compared to the ".debug" suffix.
// Both "slow" and "debug" tags are disabled by default.
I don't think this will cause an issue either way though, these events probably top out at 5/s-ish anyway.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Replace OptGuideLogging with TRACE_EVENTs in SessionImpl.
Bug: 422805231
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |