1
0

Change logger to only be instantiated when explicitly enabled to not cause unneccessary debugging

especially in dev-installations
References #131
This commit is contained in:
Garvin Hicking
2014-05-19 11:12:47 +02:00
parent b8faaba829
commit eb07593088
6 changed files with 32 additions and 44 deletions

View File

@ -408,7 +408,7 @@
'title' => LOG_LEVEL,
'description' => LOG_LEVEL_DESC,
'type' => 'list',
'default' => array('Automatic' => AUTOMATIC, 'error' => ERROR, 'debug' => DEBUG), # i18n
'default' => array('Off' => NO, 'error' => ERROR, 'debug' => DEBUG), # i18n
'permission' => 'blogConfiguration'),
));