summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohn Hodge <tpg@mutabah.net>2016-08-06 17:27:41 +0800
committerJohn Hodge <tpg@mutabah.net>2016-08-06 17:27:41 +0800
commit8904e6dbfe66e9258ac8721cd5b62be422a22a70 (patch)
treec069033bee7a85592aef3838453bf2826045dc8e /src
parent8ae9c57c0e291888f9b23467e562aa822c84c686 (diff)
downloadmrust-8904e6dbfe66e9258ac8721cd5b62be422a22a70.tar.gz
Main - Disable logging for `Typecheck Expressions`
Diffstat (limited to 'src')
-rw-r--r--src/main.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index b736045c..2d4e4a4c 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -26,9 +26,10 @@ int g_debug_indent_level = 0;
bool debug_enabled()
{
//return true;
- return g_cur_phase != "Parse";
+ //return g_cur_phase != "Parse";
//return g_cur_phase != "Parse" && g_cur_phase != "Expand";
//return g_cur_phase != "Parse" && g_cur_phase != "Expand" && g_cur_phase != "Resolve";
+ return g_cur_phase != "Parse" && g_cur_phase != "Expand" && g_cur_phase != "Resolve" && g_cur_phase != "Typecheck Expressions";
}
::std::ostream& debug_output(int indent, const char* function)
{