Issue #113: Fix incorrectly parsed debug setting

This commit is contained in:
Dale Davies
2024-04-16 21:04:27 +01:00
parent e86bd4f85b
commit fddd545e72

View File

@@ -44,7 +44,7 @@ class Main {
// Now we have config, enable detailed debugging info as early as possible
// during initialisation
if (!$this->config->get('debug')) {
if (!$this->config->parse_bool($this->config->get('debug'))) {
$debugmode = Debugger::Production;
}
// Tell Tracy to handle errors and exceptions.