diff options
author | Florian Dold <dold@inria.fr> | 2015-12-23 23:24:10 +0100 |
---|---|---|
committer | Florian Dold <dold@inria.fr> | 2015-12-23 23:24:10 +0100 |
commit | 4e4a90d6ad14575d94c0623bf4c1a7f77eab15e3 (patch) | |
tree | 5ec2c284a278c29ca92b970c3f1ac38f6d2f8d0e | |
parent | 5af570bd287741d114d55a7ed685544186f8e91b (diff) |
Temporary: Very verbose logging.
-rw-r--r-- | src/mint-lib/mint_api_handle.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/mint-lib/mint_api_handle.c b/src/mint-lib/mint_api_handle.c index aa0df7069..c9359508c 100644 --- a/src/mint-lib/mint_api_handle.c +++ b/src/mint-lib/mint_api_handle.c @@ -753,6 +753,14 @@ TALER_MINT_connect (struct TALER_MINT_Context *ctx, c = curl_easy_init (); GNUNET_assert (CURLE_OK == curl_easy_setopt (c, + CURLOPT_VERBOSE, + 1)); + GNUNET_assert (CURLE_OK == + curl_easy_setopt (c, + CURLOPT_STDERR, + stdout)); + GNUNET_assert (CURLE_OK == + curl_easy_setopt (c, CURLOPT_URL, kr->url)); GNUNET_assert (CURLE_OK == |