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
-------

0f9660b854 Fix log message formatting in exception views
This commit is contained in:
Fabien Potencier 2017-04-12 07:18:23 -07:00
commit 9541264c2b

View File

@ -21,7 +21,7 @@
{{ log.channel }}
</td>
{% endif %}
<td>{{ log.message }}</td>
<td>{{ log.message|format_log_message(log.context) }}</td>
</tr>
{% endfor %}
</tbody>