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.
2 parents 9dceeea + 041ee0c commit d06402fCopy full SHA for d06402f
src/Logs/LaravelLog.php
@@ -34,7 +34,7 @@ protected function parseText(array &$matches = []): void
34
35
// sometimes, even the first line will have a HUGE exception with tons of debug data all in one line,
36
// so in order to properly match, we must have a smaller first line...
37
- $firstLineSplit = str_split($firstLine, 1000);
+ $firstLineSplit = mb_str_split($firstLine, 1000);
38
39
preg_match(static::regexPattern(), array_shift($firstLineSplit), $matches);
40
0 commit comments