Skip to content

Commit 8464ee0

Browse files
committed
rustc: Change a stray error! statement to debug!
1 parent 116c034 commit 8464ee0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/librustc/middle/kind.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ fn check_impl_of_trait(cx: Context, it: @item, trait_ref: &trait_ref, self_type:
129129

130130
// If this trait has builtin-kind supertraits, meet them.
131131
let self_ty: ty::t = ty::node_id_to_type(cx.tcx, it.id);
132-
error!("checking impl with self type %?", ty::get(self_ty).sty);
132+
debug!("checking impl with self type %?", ty::get(self_ty).sty);
133133
do check_builtin_bounds(cx, self_ty, trait_def.bounds) |missing| {
134134
cx.tcx.sess.span_err(self_type.span,
135135
fmt!("the type `%s', which does not fulfill `%s`, cannot implement this \

0 commit comments

Comments
 (0)