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 4e591ce commit e9ad8c3Copy full SHA for e9ad8c3
src/Illuminate/Foundation/Console/ServeCommand.php
@@ -305,6 +305,8 @@ protected function getDateFromLine($line)
305
? '/^\[\d+]\s\[([a-zA-Z0-9: ]+)\]/'
306
: '/^\[([^\]]+)\]/';
307
308
+ $line = str_replace(' ', ' ', $line);
309
+
310
preg_match($regex, $line, $matches);
311
312
return Carbon::createFromFormat('D M d H:i:s Y', $matches[1]);
0 commit comments