Skip to content

Commit fc722b1

Browse files
committed
Comment-out some logging chatter in extfmt.
1 parent 9e4943c commit fc722b1

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/comp/front/extfmt.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@ fn expand_syntax_ext(vec[@ast.expr] args,
8282

8383
auto fmt = expr_to_str(args.(0));
8484

85-
log "Format string:";
86-
log fmt;
85+
// log "Format string:";
86+
// log fmt;
8787

8888
auto pieces = parse_fmt_string(fmt);
8989
auto args_len = _vec.len[@ast.expr](args);
@@ -539,8 +539,8 @@ fn pieces_to_expr(vec[piece] pieces, vec[@ast.expr] args) -> @ast.expr {
539539
}
540540

541541
// TODO: Remove debug logging
542-
log "Building conversion:";
543-
log_conv(conv);
542+
// log "Building conversion:";
543+
// log_conv(conv);
544544

545545
n += 1u;
546546
auto arg_expr = args.(n);
@@ -551,8 +551,8 @@ fn pieces_to_expr(vec[piece] pieces, vec[@ast.expr] args) -> @ast.expr {
551551
}
552552

553553
// TODO: Remove this debug logging
554-
log "dumping expanded ast:";
555-
log pretty.print_expr(tmp_expr);
554+
// log "dumping expanded ast:";
555+
// log pretty.print_expr(tmp_expr);
556556
ret tmp_expr;
557557
}
558558

0 commit comments

Comments
 (0)