switch defaults for verbose stack trace

This commit is contained in:
Rudi Grinberg 2012-09-12 11:51:11 -04:00
parent 8b433de006
commit f47593575c
1 changed files with 2 additions and 2 deletions

View File

@ -71,9 +71,9 @@ try {
echo "</pre>";
Logging::info($e->getMessage());
if (VERBOSE_STACK_TRACE) {
Logging::info($e->getTrace());
} else {
Logging::info($e->getTraceAsString());
} else {
Logging::info($e->getTrace());
}
}