mirror of
https://github.com/Seldaek/monolog.git
synced 2025-10-22 00:56:08 +02:00
123 lines
3.6 KiB
PHP
123 lines
3.6 KiB
PHP
<?php declare(strict_types=1);
|
|
|
|
/*
|
|
* This file is part of the Monolog package.
|
|
*
|
|
* (c) Jordi Boggiano <j.boggiano@seld.be>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Monolog\Processor;
|
|
|
|
use Monolog\Level;
|
|
use Monolog\Logger;
|
|
use Psr\Log\LogLevel;
|
|
use Monolog\LogRecord;
|
|
|
|
/**
|
|
* Injects line/file:class/function where the log message came from
|
|
*
|
|
* Warning: This only works if the handler processes the logs directly.
|
|
* If you put the processor on a handler that is behind a FingersCrossedHandler
|
|
* for example, the processor will only be called once the trigger level is reached,
|
|
* and all the log records will have the same file/line/.. data from the call that
|
|
* triggered the FingersCrossedHandler.
|
|
*
|
|
* @author Jordi Boggiano <j.boggiano@seld.be>
|
|
*/
|
|
class IntrospectionProcessor implements ProcessorInterface
|
|
{
|
|
private Level $level;
|
|
|
|
/** @var string[] */
|
|
private array $skipClassesPartials;
|
|
|
|
private int $skipStackFramesCount;
|
|
|
|
private const SKIP_FUNCTIONS = [
|
|
'call_user_func',
|
|
'call_user_func_array',
|
|
];
|
|
|
|
/**
|
|
* @param string|int|Level $level The minimum logging level at which this Processor will be triggered
|
|
* @param string[] $skipClassesPartials
|
|
*
|
|
* @phpstan-param value-of<Level::VALUES>|value-of<Level::NAMES>|Level|LogLevel::* $level
|
|
*/
|
|
public function __construct(int|string|Level $level = Level::Debug, array $skipClassesPartials = [], int $skipStackFramesCount = 0)
|
|
{
|
|
$this->level = Logger::toMonologLevel($level);
|
|
$this->skipClassesPartials = array_merge(['Monolog\\'], $skipClassesPartials);
|
|
$this->skipStackFramesCount = $skipStackFramesCount;
|
|
}
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function __invoke(LogRecord $record): LogRecord
|
|
{
|
|
// return if the level is not high enough
|
|
if ($record->level->isLowerThan($this->level)) {
|
|
return $record;
|
|
}
|
|
|
|
$trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS);
|
|
|
|
// skip first since it's always the current method
|
|
array_shift($trace);
|
|
// the call_user_func call is also skipped
|
|
array_shift($trace);
|
|
|
|
$i = 0;
|
|
|
|
while ($this->isTraceClassOrSkippedFunction($trace, $i)) {
|
|
if (isset($trace[$i]['class'])) {
|
|
foreach ($this->skipClassesPartials as $part) {
|
|
if (strpos($trace[$i]['class'], $part) !== false) {
|
|
$i++;
|
|
|
|
continue 2;
|
|
}
|
|
}
|
|
} elseif (in_array($trace[$i]['function'], self::SKIP_FUNCTIONS, true)) {
|
|
$i++;
|
|
|
|
continue;
|
|
}
|
|
|
|
break;
|
|
}
|
|
|
|
$i += $this->skipStackFramesCount;
|
|
|
|
// we should have the call source now
|
|
$record->extra = array_merge(
|
|
$record->extra,
|
|
[
|
|
'file' => $trace[$i - 1]['file'] ?? null,
|
|
'line' => $trace[$i - 1]['line'] ?? null,
|
|
'class' => $trace[$i]['class'] ?? null,
|
|
'callType' => $trace[$i]['type'] ?? null,
|
|
'function' => $trace[$i]['function'] ?? null,
|
|
]
|
|
);
|
|
|
|
return $record;
|
|
}
|
|
|
|
/**
|
|
* @param array<mixed> $trace
|
|
*/
|
|
private function isTraceClassOrSkippedFunction(array $trace, int $index): bool
|
|
{
|
|
if (!isset($trace[$index])) {
|
|
return false;
|
|
}
|
|
|
|
return isset($trace[$index]['class']) || in_array($trace[$index]['function'], self::SKIP_FUNCTIONS, true);
|
|
}
|
|
}
|