File tree 1 file changed +8
-1
lines changed
1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -1025,7 +1025,7 @@ exceptions
1025
1025
1026
1026
**type **: ``array ``
1027
1027
1028
- Defines the :ref: `log level </logging >` and HTTP status code applied to the
1028
+ Defines the :ref: `log level </logging >`, :ref: ` log channel < /logging/channels_handlers >` and HTTP status code applied to the
1029
1029
exceptions that match the given exception class:
1030
1030
1031
1031
.. configuration-block ::
@@ -1038,6 +1038,7 @@ exceptions that match the given exception class:
1038
1038
Symfony\Component\HttpKernel\Exception\BadRequestHttpException :
1039
1039
log_level : ' debug'
1040
1040
status_code : 422
1041
+ log_channel : ' custom_channel'
1041
1042
1042
1043
.. code-block :: xml
1043
1044
@@ -1055,6 +1056,7 @@ exceptions that match the given exception class:
1055
1056
class =" Symfony\Component\HttpKernel\Exception\BadRequestHttpException"
1056
1057
log-level =" debug"
1057
1058
status-code =" 422"
1059
+ log-channel =" custom_channel"
1058
1060
/>
1059
1061
<!-- ... -->
1060
1062
</framework : config >
@@ -1070,9 +1072,14 @@ exceptions that match the given exception class:
1070
1072
$framework->exception(BadRequestHttpException::class)
1071
1073
->logLevel('debug')
1072
1074
->statusCode(422)
1075
+ ->logChannel('custom_channel')
1073
1076
;
1074
1077
};
1075
1078
1079
+ .. versionadded :: 7.3
1080
+
1081
+ The ``log_channel `` option was introduced in Symfony 7.3.
1082
+
1076
1083
The order in which you configure exceptions is important because Symfony will
1077
1084
use the configuration of the first exception that matches ``instanceof ``:
1078
1085
You can’t perform that action at this time.
0 commit comments