Replies: 1 comment
-
Hey @boryn my favourite way is using a stream to create a temporary file somewhere to write to... protected function defaultConfig(): array
{
return [
'debug' => fopen('some-file.txt', 'wb+'),
];
} When using Laravel, I use |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I wonder how we could debug the raw curl query sent by Guzzle?
I tried with:
but actually where we can see the debugging output?
Beta Was this translation helpful? Give feedback.
All reactions