commit
41b1c9b374
2 changed files with 40 additions and 13 deletions
|
@ -11,28 +11,28 @@ use Monolog\Processor\ProcessorInterface;
|
||||||
* Based on the class IntrospectionProcessor without the "class" information
|
* Based on the class IntrospectionProcessor without the "class" information
|
||||||
* @see IntrospectionProcessor
|
* @see IntrospectionProcessor
|
||||||
*/
|
*/
|
||||||
class FriendicaProcessor implements ProcessorInterface
|
class FriendicaIntrospectionProcessor implements ProcessorInterface
|
||||||
{
|
{
|
||||||
private $level;
|
private $level;
|
||||||
|
|
||||||
private $skipStackFramesCount;
|
private $skipStackFramesCount;
|
||||||
|
|
||||||
|
private $skipClassesPartials;
|
||||||
|
|
||||||
private $skipFunctions = [
|
private $skipFunctions = [
|
||||||
'call_user_func',
|
'call_user_func',
|
||||||
'call_user_func_array',
|
'call_user_func_array',
|
||||||
];
|
];
|
||||||
|
|
||||||
private $skipFiles = [
|
|
||||||
'Logger.php'
|
|
||||||
];
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string|int $level The minimum logging level at which this Processor will be triggered
|
* @param string|int $level The minimum logging level at which this Processor will be triggered
|
||||||
|
* @param array $skipClassesPartials An array of classes to skip during logging
|
||||||
* @param int $skipStackFramesCount If the logger should use information from other hierarchy levels of the call
|
* @param int $skipStackFramesCount If the logger should use information from other hierarchy levels of the call
|
||||||
*/
|
*/
|
||||||
public function __construct($level = Logger::DEBUG, $skipStackFramesCount = 0)
|
public function __construct($level = Logger::DEBUG, $skipClassesPartials = array(), $skipStackFramesCount = 0)
|
||||||
{
|
{
|
||||||
$this->level = Logger::toMonologLevel($level);
|
$this->level = Logger::toMonologLevel($level);
|
||||||
|
$this->skipClassesPartials = array_merge(array('Monolog\\'), $skipClassesPartials);
|
||||||
$this->skipStackFramesCount = $skipStackFramesCount;
|
$this->skipStackFramesCount = $skipStackFramesCount;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -47,13 +47,12 @@ class FriendicaProcessor implements ProcessorInterface
|
||||||
|
|
||||||
$i = 1;
|
$i = 1;
|
||||||
|
|
||||||
// Skip everything that we shouldn't display
|
while ($this->isTraceClassOrSkippedFunction($trace, $i)) {
|
||||||
while (in_array($trace[$i]['function'], $this->skipFunctions) ||
|
|
||||||
!isset($trace[$i - 1]['file']) ||
|
|
||||||
in_array(basename($trace[$i - 1]['file']), $this->skipFiles)) {
|
|
||||||
$i++;
|
$i++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$i += $this->skipStackFramesCount;
|
||||||
|
|
||||||
// we should have the call source now
|
// we should have the call source now
|
||||||
$record['extra'] = array_merge(
|
$record['extra'] = array_merge(
|
||||||
$record['extra'],
|
$record['extra'],
|
||||||
|
@ -66,4 +65,30 @@ class FriendicaProcessor implements ProcessorInterface
|
||||||
|
|
||||||
return $record;
|
return $record;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Checks if the current trace class or function has to be skipped
|
||||||
|
*
|
||||||
|
* @param array $trace The current trace array
|
||||||
|
* @param int $index The index of the current hierarchy level
|
||||||
|
* @return bool True if the class or function should get skipped, otherwise false
|
||||||
|
*/
|
||||||
|
private function isTraceClassOrSkippedFunction(array $trace, $index)
|
||||||
|
{
|
||||||
|
if (!isset($trace[$index])) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isset($trace[$index]['class'])) {
|
||||||
|
foreach ($this->skipClassesPartials as $part) {
|
||||||
|
if (strpos($trace[$index]['class'], $part) !== false) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} elseif (in_array($trace[$index]['function'], $this->skipFunctions)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
|
@ -4,7 +4,7 @@ namespace Friendica\Util;
|
||||||
|
|
||||||
use Friendica\Network\HTTPException\InternalServerErrorException;
|
use Friendica\Network\HTTPException\InternalServerErrorException;
|
||||||
use Friendica\Util\Logger\FriendicaDevelopHandler;
|
use Friendica\Util\Logger\FriendicaDevelopHandler;
|
||||||
use Friendica\Util\Logger\FriendicaProcessor;
|
use Friendica\Util\Logger\FriendicaIntrospectionProcessor;
|
||||||
use Monolog;
|
use Monolog;
|
||||||
use Psr\Log\LoggerInterface;
|
use Psr\Log\LoggerInterface;
|
||||||
use Psr\Log\LogLevel;
|
use Psr\Log\LogLevel;
|
||||||
|
@ -28,7 +28,8 @@ class LoggerFactory
|
||||||
$logger = new Monolog\Logger($channel);
|
$logger = new Monolog\Logger($channel);
|
||||||
$logger->pushProcessor(new Monolog\Processor\PsrLogMessageProcessor());
|
$logger->pushProcessor(new Monolog\Processor\PsrLogMessageProcessor());
|
||||||
$logger->pushProcessor(new Monolog\Processor\ProcessIdProcessor());
|
$logger->pushProcessor(new Monolog\Processor\ProcessIdProcessor());
|
||||||
$logger->pushProcessor(new FriendicaProcessor(LogLevel::DEBUG, 1));
|
$logger->pushProcessor(new Monolog\Processor\UidProcessor());
|
||||||
|
$logger->pushProcessor(new FriendicaIntrospectionProcessor(LogLevel::DEBUG, ['Friendica\\Core\\Logger']));
|
||||||
|
|
||||||
return $logger;
|
return $logger;
|
||||||
}
|
}
|
||||||
|
@ -51,7 +52,8 @@ class LoggerFactory
|
||||||
$logger = new Monolog\Logger($channel);
|
$logger = new Monolog\Logger($channel);
|
||||||
$logger->pushProcessor(new Monolog\Processor\PsrLogMessageProcessor());
|
$logger->pushProcessor(new Monolog\Processor\PsrLogMessageProcessor());
|
||||||
$logger->pushProcessor(new Monolog\Processor\ProcessIdProcessor());
|
$logger->pushProcessor(new Monolog\Processor\ProcessIdProcessor());
|
||||||
$logger->pushProcessor(new FriendicaProcessor(LogLevel::DEBUG, 1));
|
$logger->pushProcessor(new Monolog\Processor\UidProcessor());
|
||||||
|
$logger->pushProcessor(new FriendicaIntrospectionProcessor(LogLevel::DEBUG, ['Friendica\\Core\\Logger']));
|
||||||
|
|
||||||
|
|
||||||
$logger->pushHandler(new FriendicaDevelopHandler($developerIp));
|
$logger->pushHandler(new FriendicaDevelopHandler($developerIp));
|
||||||
|
|
Loading…
Reference in a new issue