File tree Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change 226
226
],
227
227
'mail ' => [
228
228
'timeline ' => false , // Add mails to the timeline
229
- 'show_body ' => false ,
230
- 'full_log ' => false ,
229
+ 'show_body ' => true ,
231
230
],
232
231
'views ' => [
233
232
'timeline ' => false , // Add the views to the timeline (Experimental)
Original file line number Diff line number Diff line change @@ -433,10 +433,7 @@ function (\Illuminate\Database\Events\ConnectionEstablished $event) {
433
433
$ mailCollector ->addSymfonyMessage ($ event ->sent ->getSymfonySentMessage ());
434
434
});
435
435
436
- if ($ config ->get ('debugbar.options.mail.full_log ' )) {
437
- $ mailCollector ->showMessageDetail ();
438
- }
439
- if ($ config ->get ('debugbar.options.mail.show_body ' )) {
436
+ if ($ config ->get ('debugbar.options.mail.show_body ' ) || $ config ->get ('debugbar.options.mail.full_log ' )) {
440
437
$ mailCollector ->showMessageBody ();
441
438
}
442
439
You can’t perform that action at this time.
0 commit comments