mirror of
https://github.com/friendica/friendica
synced 2024-11-18 21:43:40 +00:00
removing array prefix (compatibility)
This commit is contained in:
parent
a5e12f53e8
commit
88e2cc9fa2
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ class FriendicaProcessor implements ProcessorInterface
|
||||||
* @param array $skipClassesPartials An array of classes to skip during logging
|
* @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, array $skipClassesPartials = array(), $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->skipClassesPartials = array_merge(array('Monolog\\'), $skipClassesPartials);
|
||||||
|
|
Loading…
Reference in a new issue