X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=include%2Ftext.php;h=4b2a4a9409f4254a89f8ecb4f2230bcd9e451005;hb=b806f878740299eea54e86603840bbfd596a4bf7;hp=3e359f1a60814a4e8d7d20b9bb06b52d69800661;hpb=44d5dec06fbbc890a755b2b3e9b0f1ee80c74a64;p=friendica.git diff --git a/include/text.php b/include/text.php index 3e359f1a60..4b2a4a9409 100644 --- a/include/text.php +++ b/include/text.php @@ -719,9 +719,10 @@ function logger($msg, $level = 0) { } if (count($LOGGER_LEVELS) == 0) { - foreach (get_defined_constants() as $k => $v){ - if (substr($k, 0, 7) == "LOGGER_") + foreach (get_defined_constants() as $k => $v) { + if (substr($k, 0, 7) == "LOGGER_") { $LOGGER_LEVELS[$v] = substr($k, 7, 7); + } } } @@ -733,14 +734,14 @@ function logger($msg, $level = 0) { $callers = debug_backtrace(); $logline = sprintf("%s@%s\t[%s]:%s:%s:%s\t%s\n", - datetime_convert(), - $process_id, - $LOGGER_LEVELS[$level], - basename($callers[0]['file']), - $callers[0]['line'], - $callers[1]['function'], - $msg - ); + datetime_convert(), + $process_id, + $LOGGER_LEVELS[$level], + basename($callers[0]['file']), + $callers[0]['line'], + $callers[1]['function'], + $msg + ); $stamp1 = microtime(true); @file_put_contents($logfile, $logline, FILE_APPEND);