5.4.0) * @var int */ protected $traceLimit = 10; /** * Classes within this namespace in the stack are ignored * @var string */ protected $ignoredNamespace = 'Zend\\Log'; /** * Adds the origin of the log() call to the event extras * * @param array $event event data * @return array event data */ public function process(array $event) { $trace = $this->getBacktrace(); array_shift($trace); // ignore $this->getBacktrace(); array_shift($trace); // ignore $this->process() $i = 0; while (isset($trace[$i]['class']) && false !== strpos($trace[$i]['class'], $this->ignoredNamespace) ) { $i++; } $origin = array( 'file' => isset($trace[$i-1]['file']) ? $trace[$i-1]['file'] : null, 'line' => isset($trace[$i-1]['line']) ? $trace[$i-1]['line'] : null, 'class' => isset($trace[$i]['class']) ? $trace[$i]['class'] : null, 'function' => isset($trace[$i]['function']) ? $trace[$i]['function'] : null, ); $extra = $origin; if (isset($event['extra'])) { $extra = array_merge($origin, $event['extra']); } $event['extra'] = $extra; return $event; } /** * Provide backtrace as slim as possible * * @return array: */ protected function getBacktrace() { if (version_compare(PHP_VERSION, '5.4.0') >= 0) { return debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, $this->traceLimit); } if (version_compare(PHP_VERSION, '5.3.6') >= 0) { return debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS); } return debug_backtrace(); } }