Skip to content

Commit 9966153

Browse files
committed
Fix issue with monolog 2 type error
1 parent 0c0f824 commit 9966153

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GelfLoggerFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public function __invoke(array $config): Logger
6666

6767
$handler = new GelfHandler(new Publisher($transport), $this->level($config));
6868

69-
$handler->setFormatter(new GelfMessageFormatter($config['system_name'] ?? null, null, null));
69+
$handler->setFormatter(new GelfMessageFormatter($config['system_name'] ?? null, null, ''));
7070

7171
foreach ($this->parseProcessors($config) as $processor) {
7272
$handler->pushProcessor(new $processor);

0 commit comments

Comments
 (0)