in src/docs/routing/error-handling.md
Undocumented configuration key 'log.style' :
app()->config([
/* ... */
'log.style' => 'linux',
/* ... */
]);
According to the code, two possible values : 'linux' and 'leaf' (default).
$formatted = $style === 'linux'
? "[$timestamp] $level$message\n\n"
: "[$timestamp]\n$level$message\n\n";
I personnally prefer the linux style with everything on the same line.
in src/docs/routing/error-handling.md
Undocumented configuration key 'log.style' :
According to the code, two possible values : 'linux' and 'leaf' (default).
I personnally prefer the linux style with everything on the same line.