-
Notifications
You must be signed in to change notification settings - Fork 13.6k
Open
Labels
A-diagnosticsArea: Messages for errors, warnings, and lintsArea: Messages for errors, warnings, and lintsA-self-profileArea: Self-profiling feature of the compilerArea: Self-profiling feature of the compilerC-enhancementCategory: An issue proposing an enhancement or a PR with one.Category: An issue proposing an enhancement or a PR with one.T-compilerRelevant to the compiler team, which will review and decide on the PR/issue.Relevant to the compiler team, which will review and decide on the PR/issue.
Description
Currently it only emits a warn!()
log, which is not shown by default.
rust/compiler/rustc_data_structures/src/profiling.rs
Lines 596 to 604 in 55d4364
warn!( | |
"Unknown self-profiler events specified: {}. Available options are: {}.", | |
unknown_events.join(", "), | |
EVENT_FILTERS_BY_NAME | |
.iter() | |
.map(|&(name, _)| name.to_string()) | |
.collect::<Vec<_>>() | |
.join(", ") | |
); |
Metadata
Metadata
Assignees
Labels
A-diagnosticsArea: Messages for errors, warnings, and lintsArea: Messages for errors, warnings, and lintsA-self-profileArea: Self-profiling feature of the compilerArea: Self-profiling feature of the compilerC-enhancementCategory: An issue proposing an enhancement or a PR with one.Category: An issue proposing an enhancement or a PR with one.T-compilerRelevant to the compiler team, which will review and decide on the PR/issue.Relevant to the compiler team, which will review and decide on the PR/issue.