瀏覽代碼

Fixed verbosity level

Taddeus Kroes 12 年之前
父節點
當前提交
4d50c33953
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      phases/peephole.ml

+ 1 - 1
phases/peephole.ml

@@ -69,7 +69,7 @@ let phase = function
         let oldcount = count_instrs instrs in
         let instrs = peephole (strip_comments instrs) in
         let newcount = count_instrs instrs in
-        log_line 1 (sprintf
+        log_line 2 (sprintf
             "Optimized %d to %d instructions (%d fewer)"
             oldcount newcount (oldcount - newcount)
         );