Skip to content

Commit

Permalink
Remove unwanted call to include stack traces (#47687)
Browse files Browse the repository at this point in the history
  • Loading branch information
HazzazBinFaiz authored Jul 8, 2023
1 parent ecbc2c9 commit 81bf9e7
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/Illuminate/Log/LogManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -471,9 +471,7 @@ protected function prepareHandler(HandlerInterface $handler, array $config = [])
*/
protected function formatter()
{
return tap(new LineFormatter(null, $this->dateFormat, true, true), function ($formatter) {
$formatter->includeStacktraces();
});
return new LineFormatter(null, $this->dateFormat, true, true, true);
}

/**
Expand Down

0 comments on commit 81bf9e7

Please sign in to comment.