@@ -151,8 +151,8 @@ pub fn decode_dep_graph<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
151
151
152
152
if prev_commandline_args_hash != tcx. sess . opts . dep_tracking_hash ( ) {
153
153
if tcx. sess . opts . debugging_opts . incremental_info {
154
- println ! ( "incremental: completely ignoring cache because of \
155
- differing commandline arguments") ;
154
+ eprintln ! ( "incremental: completely ignoring cache because of \
155
+ differing commandline arguments") ;
156
156
}
157
157
// We can't reuse the cache, purge it.
158
158
debug ! ( "decode_dep_graph: differing commandline arg hashes" ) ;
@@ -309,8 +309,8 @@ fn reconcile_work_products<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
309
309
all_files_exist = false ;
310
310
311
311
if tcx. sess . opts . debugging_opts . incremental_info {
312
- println ! ( "incremental: could not find file for up-to-date work product: {}" ,
313
- path. display( ) ) ;
312
+ eprintln ! ( "incremental: could not find file for \
313
+ up-to-date work product: {}" , path. display( ) ) ;
314
314
}
315
315
}
316
316
}
@@ -418,10 +418,10 @@ fn process_edge<'a, 'tcx, 'edges>(
418
418
format ! ( "{:?}" , blame)
419
419
} ;
420
420
421
- println ! ( "incremental: module {:?} is dirty because {:?} \
422
- changed or was removed",
423
- wp_id,
424
- blame_str) ;
421
+ eprintln ! ( "incremental: module {:?} is dirty because {:?} \
422
+ changed or was removed",
423
+ wp_id,
424
+ blame_str) ;
425
425
}
426
426
}
427
427
}
0 commit comments