8000 bug #22393 [TwigBundle] Fix log message formatting in exception views… · symfony/symfony@9541264 · GitHub
[go: up one dir, main page]

Skip to content

Commit 9541264

Browse files
committed
bug #22393 [TwigBundle] Fix log message formatting in exception views (chalasr)
This PR was merged into the 3.3-dev branch. Discussion ---------- [TwigBundle] Fix log message formatting in exception views | Q | A | ------------- | --- | Branch? | master | Bug fix? | yes | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | #22335 | License | MIT | Doc PR | n/a | __Before__ | | ------------- | | ![before](http://image.prntscr.com/image/984005e787ea4418a75e76d968f3af14.png) | | __After__ | | ------------- | | ![after](http://image.prntscr.com/image/608331f67030455d9bb1eaeec2bc4eb8.png) | Commits ------- 0f9660b Fix log message formatting in exception views
2 parents 0c19ca8 + 0f9660b commit 9541264

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Bundle/TwigBundle/Resources/views/Exception/logs.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
{{ log.channel }}
2222
</td>
2323
{% endif %}
24-
<td>{{ log.message }}</td>
24+
<td>{{ log.message|format_log_message(log.context) }}</td>
2525
</tr>
2626
{% endfor %}
2727
</tbody>

0 commit comments

Comments
 (0)
0