We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9335fc commit 9d5ac10Copy full SHA for 9d5ac10
messenger.rst
@@ -924,8 +924,17 @@ to retry them:
924
925
.. code-block:: terminal
926
927
- # see all messages in the failure transport
+ # see all messages in the failure transport with a default limit of 50
928
$ php bin/console messenger:failed:show
929
+
930
+ # see the 10 first messages
931
+ $ php bin/console messenger:failed:show --max=10
932
933
+ # see only MyClass messages
934
+ $ php bin/console messenger:failed:show --class-filter='MyClass'
935
936
+ # see the number of messages by message class
937
+ $ php bin/console messenger:failed:show --stats
938
939
# see details about a specific failure
940
$ php bin/console messenger:failed:show 20 -vv
0 commit comments