Skip to content

Commit 0904f25

Browse files
committed
rustc: Convert some error logs to debug
1 parent a4906b8 commit 0904f25

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/rustc/middle/trans/base.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -2763,12 +2763,12 @@ fn invoke(bcx: block, llfn: ValueRef, llargs: [ValueRef]) -> block {
27632763
let _icx = bcx.insn_ctxt("invoke_");
27642764
if bcx.unreachable { ret bcx; }
27652765
if need_invoke(bcx) {
2766-
log(error, "invoking");
2766+
log(debug, "invoking");
27672767
let normal_bcx = sub_block(bcx, "normal return");
27682768
Invoke(bcx, llfn, llargs, normal_bcx.llbb, get_landing_pad(bcx));
27692769
ret normal_bcx;
27702770
} else {
2771-
log(error, "calling");
2771+
log(debug, "calling");
27722772
Call(bcx, llfn, llargs);
27732773
ret bcx;
27742774
}

0 commit comments

Comments
 (0)