Skip to content

Commit

Permalink
Merge pull request #7 from Mapudo/MAP-1900
Browse files Browse the repository at this point in the history
MAP-1900
  • Loading branch information
cjost1988 authored Jul 12, 2017
2 parents 9b92b0c + b04a1d9 commit 295cf93
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Note: This is WIP and will be edited when the other issues for the 1.1.0 milesto
- Requests that are logged with the LogMiddleware, will now be logged with a client name
- Symfony Profiler Handler now allows filtering by client
- Symfony Profiler Handler now shows the client as a label on the request
- Symfony profiler now looks even better in Symfony3

## 2017-03-03

Expand Down
6 changes: 6 additions & 0 deletions src/Resources/public/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,9 @@
font-size: 11px;
font-family: monospace;
}

.dump {
background-color: #222;
padding: 5px;
margin-bottom: 10px;
}
10 changes: 7 additions & 3 deletions src/Resources/views/profiler.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,9 @@
<em>Headers</em>
</div>
<div class="col-xs-9 right">
{{ dump(message.request.headers) }}
<div class="dump">
{{ dump(message.request.headers) }}
</div>
</div>
</div>
<div class="row">
Expand Down Expand Up @@ -110,15 +112,17 @@
<em>Headers</em>
</div>
<div class="col-xs-9 right">
{{ dump(message.request.response.headers) }}
<div class="dump">
{{ dump(message.request.response.headers) }}
</div>
</div>
</div>
<div class="row">
<div class="col-xs-2">
<em>Body</em>
</div>
<div class="col-xs-9 right">
<textarea readonly class="responseBody">
<textarea rows="10" readonly class="responseBody">
{{ message.request.response.body }}
</textarea>
</div>
Expand Down

0 comments on commit 295cf93

Please sign in to comment.