@@ -44,7 +44,7 @@ impl Step for Std {
44
44
std_cargo ( builder, & compiler, target, & mut cargo) ;
45
45
46
46
let _folder = builder. fold_output ( || format ! ( "stage{}-std" , compiler. stage) ) ;
47
- println ! ( "Checking std artifacts ({} -> {})" , & compiler. host, target) ;
47
+ builder . info ( & format ! ( "Checking std artifacts ({} -> {})" , & compiler. host, target) ) ;
48
48
run_cargo ( builder,
49
49
& mut cargo,
50
50
vec ! [ ] ,
@@ -89,7 +89,7 @@ impl Step for Rustc {
89
89
rustc_cargo ( builder, & mut cargo) ;
90
90
91
91
let _folder = builder. fold_output ( || format ! ( "stage{}-rustc" , compiler. stage) ) ;
92
- println ! ( "Checking compiler artifacts ({} -> {})" , & compiler. host, target) ;
92
+ builder . info ( & format ! ( "Checking compiler artifacts ({} -> {})" , & compiler. host, target) ) ;
93
93
run_cargo ( builder,
94
94
& mut cargo,
95
95
vec ! [ ] ,
@@ -177,7 +177,7 @@ impl Step for Test {
177
177
test_cargo ( builder, & compiler, target, & mut cargo) ;
178
178
179
179
let _folder = builder. fold_output ( || format ! ( "stage{}-test" , compiler. stage) ) ;
180
- println ! ( "Checking test artifacts ({} -> {})" , & compiler. host, target) ;
180
+ builder . info ( & format ! ( "Checking test artifacts ({} -> {})" , & compiler. host, target) ) ;
181
181
run_cargo ( builder,
182
182
& mut cargo,
183
183
vec ! [ ] ,
0 commit comments