Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Http/Controllers/ResourceController.php
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ public function scimlog(Callable $function, Request $request, PolicyDecisionPoin
$response_text = method_exists($response, 'toJson') ? $response->toJson() : $response; // very not sure about this; not sure if other responses will parse right - FIXME
$logmsg = <<< EOF
=====================================================================================
{$request->method()} {$request->url()}
{$request->method()} {$request->fullUrl()}

{$request->getContent()}
-------------------------------------------------------------------------------------
Expand All @@ -184,7 +184,7 @@ public function scimlog(Callable $function, Request $request, PolicyDecisionPoin
Log::channel('scimtrace')->error(<<<EOF
=====================================================================================
Exception caught! {$e->getMessage()} of type: $error_class when executing:
{$request->method()} {$request->url()}
{$request->method()} {$request->fullUrl()}

{$request->getContent()}
EOF);
Expand Down