File tree 3 files changed +11
-0
lines changed
3 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -647,6 +647,7 @@ Exception Handler Config Options
647
647
'initialize' => true,
648
648
'search_engine' => 'google',
649
649
'handle_errors' => true,
650
+ 'show_log_id' => true,
650
651
],
651
652
],
652
653
]
@@ -697,6 +698,12 @@ handle_errors
697
698
If initialize is ``true ``, this option defines whether to set the class as an
698
699
error handler. The default value is ``true ``.
699
700
701
+ show_log_id
702
+ """""""""""
703
+
704
+ Allow to show or hide the log id in the production view. The default is ``true ``,
705
+ to show.
706
+
700
707
Language Service
701
708
^^^^^^^^^^^^^^^^
702
709
Original file line number Diff line number Diff line change @@ -636,6 +636,9 @@ protected static function setExceptionHandler(string $instance) : ExceptionHandl
636
636
if (isset ($ config ['search_engine ' ])) {
637
637
$ service ->getSearchEngines ()->setCurrent ($ config ['search_engine ' ]);
638
638
}
639
+ if (isset ($ config ['show_log_id ' ])) {
640
+ $ service ->setShowLogId ($ config ['show_log_id ' ]);
641
+ }
639
642
return static ::setService ('exceptionHandler ' , $ service , $ instance );
640
643
}
641
644
Original file line number Diff line number Diff line change 16
16
'production_view ' => __FILE__ ,
17
17
'initialize ' => true ,
18
18
'search_engine ' => 'bing ' ,
19
+ 'show_log_id ' => true ,
19
20
'logger_instance ' => 'default ' ,
20
21
'language_instance ' => 'default ' ,
21
22
],
You can’t perform that action at this time.
0 commit comments