We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c20cc0a commit 86d1fd6Copy full SHA for 86d1fd6
src/Logs/Log.php
@@ -111,7 +111,7 @@ protected function fillMatches(array $matches = []): void
111
$this->datetime = $datetime?->setTimezone(LogViewer::timezone());
112
113
$this->level = $matches[static::$regexLevelKey] ?? null;
114
- $this->message = trim($matches[static::$regexMessageKey] ?? null);
+ $this->message = trim($matches[static::$regexMessageKey] ?? '');
115
$this->context = [];
116
}
117
0 commit comments