text: "turn off" logger() if module is "install"

This commit is contained in:
Fabio Comuni 2012-01-02 20:11:06 +01:00
parent 85fbdb00ac
commit 1fbffc76b1
1 changed files with 4 additions and 0 deletions

View File

@ -426,6 +426,10 @@ function attribute_contains($attr,$s) {
if(! function_exists('logger')) { if(! function_exists('logger')) {
function logger($msg,$level = 0) { function logger($msg,$level = 0) {
// turn off logger in install mode
global $a;
if ($a->module == 'install') return;
$debugging = get_config('system','debugging'); $debugging = get_config('system','debugging');
$loglevel = intval(get_config('system','loglevel')); $loglevel = intval(get_config('system','loglevel'));
$logfile = get_config('system','logfile'); $logfile = get_config('system','logfile');