1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-04 12:17:35 +02:00
This commit is contained in:
Jordi Boggiano
2015-07-20 19:31:46 +01:00
parent 00a3ad6572
commit e4f45be5dc
2 changed files with 22 additions and 20 deletions

View File

@@ -127,7 +127,9 @@ class StreamHandler extends AbstractProcessingHandler
private function createDir() private function createDir()
{ {
// Do not try to create dir if it has already been tried. // Do not try to create dir if it has already been tried.
if ($this->dirCreated) return; if ($this->dirCreated) {
return;
}
$dir = $this->getDirFromStream($this->url); $dir = $this->getDirFromStream($this->url);
if (null !== $dir && !is_dir($dir)) { if (null !== $dir && !is_dir($dir)) {

View File

@@ -29,11 +29,11 @@ class IntrospectionProcessor
private $level; private $level;
private $skipClassesPartials; private $skipClassesPartials;
private $skipFunctions = array( private $skipFunctions = array(
'call_user_func', 'call_user_func',
'call_user_func_array', 'call_user_func_array',
); );
public function __construct($level = Logger::DEBUG, array $skipClassesPartials = array()) public function __construct($level = Logger::DEBUG, array $skipClassesPartials = array())
{ {
@@ -62,20 +62,20 @@ class IntrospectionProcessor
$i = 0; $i = 0;
while (isset($trace[$i]['class']) || in_array($trace[$i]['function'], $this->skipFunctions)) { while (isset($trace[$i]['class']) || in_array($trace[$i]['function'], $this->skipFunctions)) {
if(isset($trace[$i]['class'])) { if (isset($trace[$i]['class'])) {
foreach ($this->skipClassesPartials as $part) { foreach ($this->skipClassesPartials as $part) {
if (strpos($trace[$i]['class'], $part) !== false) { if (strpos($trace[$i]['class'], $part) !== false) {
$i++; $i++;
continue 2; continue 2;
} }
} }
} elseif(in_array($trace[$i]['function'], $this->skipFunctions)) { } elseif (in_array($trace[$i]['function'], $this->skipFunctions)) {
$i++; $i++;
continue; continue;
} }
break; break;
} }
// we should have the call source now // we should have the call source now
$record['extra'] = array_merge( $record['extra'] = array_merge(