We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents debfeed + a8a5395 commit adb6e01Copy full SHA for adb6e01
1 file changed
src/Debug/Logger.php
@@ -68,7 +68,7 @@ public function __construct(bool $debug = BLITZ_DEBUG)
68
{
69
$this->config = (object) config('log');
70
71
- $this->monolog = new MonologLogger($this->config->name ?? 'application');
+ $this->monolog = new MonologLogger(str_replace(' ', '-', $this->config->name ?? 'application'));
72
73
foreach (($this->config->handlers ?? []) as $handler => $options) {
74
$this->pushHandler($handler, (object) $options);
0 commit comments