-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMonologStackLogger.php
42 lines (35 loc) · 1001 Bytes
/
MonologStackLogger.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
declare(strict_types=1);
namespace TimDev\StackLogger;
use Monolog\Handler\NullHandler;
use Monolog\Logger as MonologLogger;
use Psr\Log\LoggerInterface as PsrInterface;
/**
* Extends Psr3Logger to provide a monolog-like withName() method.
*
* @extends Psr3StackLogger<MonologLogger>
*/
class MonologStackLogger extends Psr3StackLogger
{
public function __construct(MonologLogger $logger)
{
parent::__construct($logger);
}
public function withName(string $name): static
{
// this works, but requires WrappedPSR3::$logger to be non-private.
// Is there a better way?
$new = clone $this;
$new->logger = $this->logger->withName($name);
$new->parent = $this;
return $new;
}
public static function makeNullLogger(): self
{
return new self(new MonologLogger('null', [new NullHandler()]));
}
public function getWrapped(): MonologLogger
{
return parent::getWrapped();
}
}