We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60f7e2a commit 1a95284Copy full SHA for 1a95284
1 file changed
user_guide_src/source/libraries/curlrequest.rst
@@ -246,8 +246,10 @@ An example::
246
debug
247
=====
248
249
-When ``debug`` is passed and set to ``true``, this will enable additional debugging to echo to STDOUT during the
250
-script execution. This is done by passing CURLOPT_VERBOSE and echoing the output::
+When ``debug`` is passed and set to ``true``, this will enable additional debugging to echo to STDERR during the
+script execution. This is done by passing CURLOPT_VERBOSE and echoing the output. So, when you're running a build-in
251
+server via ``spark serve`` you will see the output in the console. Otherwise, the output will be written to
252
+the server's error log.
253
254
$response->request('GET', 'http://example.com', ['debug' => true]);
255
0 commit comments