diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-01-07 11:53:19 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-01-07 11:53:19 -0800 |
commit | 904d9b751241bfa1e1a334877c8489a27e535892 (patch) | |
tree | 148ca1adb44baf0ee431f57b7db3382e3a821218 /src | |
parent | cdbb625213020804fee0526c50b51b83f45588fc (diff) |
disable EXCEPTION_DEBUG by default
Diffstat (limited to 'src')
-rw-r--r-- | src/settings.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/settings.js b/src/settings.js index 42267428..84d64167 100644 --- a/src/settings.js +++ b/src/settings.js @@ -138,7 +138,7 @@ var LABEL_FUNCTION_FILTERS = []; // Filters for function label debug. // labels of functions that is equaled to // one of the filters are printed out // When the array is empty, the filter is disabled. -var EXCEPTION_DEBUG = 1; // Print out exceptions in emscriptened code +var EXCEPTION_DEBUG = 0; // Print out exceptions in emscriptened code var LIBRARY_DEBUG = 0; // Print out when we enter a library call (library*.js). You can also unset // Runtime.debug at runtime for logging to cease, and can set it when you |