From c7b6989c6c709ebf24f8360307249a383429731e Mon Sep 17 00:00:00 2001 From: jespergravgaard Date: Tue, 16 Jan 2018 16:58:11 +0100 Subject: [PATCH] Removed verbosity --- src/main/java/dk/camelot64/kickc/CompileLog.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/dk/camelot64/kickc/CompileLog.java b/src/main/java/dk/camelot64/kickc/CompileLog.java index f67656397..579113205 100644 --- a/src/main/java/dk/camelot64/kickc/CompileLog.java +++ b/src/main/java/dk/camelot64/kickc/CompileLog.java @@ -20,7 +20,7 @@ public class CompileLog { /** * Should fragment synthesis be verbose. */ - private boolean verboseFragmentLog = true; + private boolean verboseFragmentLog = false; /** * Should ASM optimization be verbose. @@ -35,7 +35,7 @@ public class CompileLog { /** * Should the log be output to System.out while being built */ - private boolean sysOut = true; + private boolean sysOut = false; public CompileLog() { this.log = new StringBuilder();