@@ -158,10 +158,10 @@ pub struct SelfProfilerRef {
158
158
// actually enabled.
159
159
event_filter_mask : EventFilter ,
160
160
161
- // Print verbose generic activities to stdout
161
+ // Print verbose generic activities to stderr.
162
162
print_verbose_generic_activities : bool ,
163
163
164
- // Print extra verbose generic activities to stdout
164
+ // Print extra verbose generic activities to stderr.
165
165
print_extra_verbose_generic_activities : bool ,
166
166
}
167
167
@@ -214,7 +214,7 @@ impl SelfProfilerRef {
214
214
/// Start profiling a verbose generic activity. Profiling continues until the
215
215
/// VerboseTimingGuard returned from this call is dropped. In addition to recording
216
216
/// a measureme event, "verbose" generic activities also print a timing entry to
217
- /// stdout if the compiler is invoked with -Ztime or -Ztime-passes.
217
+ /// stderr if the compiler is invoked with -Ztime or -Ztime-passes.
218
218
pub fn verbose_generic_activity < ' a > (
219
219
& ' a self ,
220
220
event_label : & ' static str ,
@@ -228,7 +228,7 @@ impl SelfProfilerRef {
228
228
/// Start profiling an extra verbose generic activity. Profiling continues until the
229
229
/// VerboseTimingGuard returned from this call is dropped. In addition to recording
230
230
/// a measureme event, "extra verbose" generic activities also print a timing entry to
231
- /// stdout if the compiler is invoked with -Ztime-passes.
231
+ /// stderr if the compiler is invoked with -Ztime-passes.
232
232
pub fn extra_verbose_generic_activity < ' a , A > (
233
233
& ' a self ,
234
234
event_label : & ' static str ,
0 commit comments