8000 minor #27051 [WebProfilerBundle][Messenger] Show bus name in profiler… · symfony/symfony@cef8d28 · GitHub
[go: up one dir, main page]

Skip to content

Commit cef8d28

Browse files
committed
minor #27051 [WebProfilerBundle][Messenger] Show bus name in profiler panel (kbond)
This PR was merged into the 4.1-dev branch. Discussion ---------- [WebProfilerBundle][Messenger] Show bus name in profiler panel | Q | A | ------------- | --- | Branch? | master | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | - | License | MIT | Doc PR | - Now that multiple buses are possible, it would be useful to see which bus was used in the messenger profiler panel. Commits ------- edddc73 [WebProfilerBundle][Messenger] show bus name in profiler panel
2 parents da4fccd + edddc73 commit cef8d28

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/Symfony/Bundle/WebProfilerBundle/Resources/views/Collector/messenger.html.twig

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,15 @@
3535
<table>
3636
<thead>
3737
<tr>
38+
<th>Bus</th>
3839
<th>Message</th>
3940
<th>Result</th>
4041
</tr>
4142
</thead>
4243
<tbody>
4344
{% for message in collector.messages %}
4445
<tr>
46+
<td>{{ message.bus }}</td>
4547
<td>
4648
{% if message.result.object is defined %}
4749
{{ profiler_dump(message.message.object, maxDepth=2) }}

0 commit comments

Comments
 (0)
0