diff options
author | Florian Dold <dold@inria.fr> | 2015-12-24 01:07:38 +0100 |
---|---|---|
committer | Florian Dold <dold@inria.fr> | 2015-12-24 01:07:38 +0100 |
commit | ce6e7be9a7927f63cbc49e1d94e5a6f5660f23fd (patch) | |
tree | 506d3740b50303dd4d9d29fd329224a2dc8847c1 /src | |
parent | ab9ad17e9591579cadd21e1a898412466a80d3a8 (diff) |
logging
Diffstat (limited to 'src')
-rw-r--r-- | src/mint-lib/mint_api_context.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mint-lib/mint_api_context.c b/src/mint-lib/mint_api_context.c index be3df7c21..0a5ab159e 100644 --- a/src/mint-lib/mint_api_context.c +++ b/src/mint-lib/mint_api_context.c @@ -345,6 +345,12 @@ TALER_MINT_get_select_info (struct TALER_MINT_Context *ctx, GNUNET_assert (CURLM_OK == curl_multi_timeout (ctx->multi, &to)); + + GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, + "CURL-given timeout is %ld, old timeout is %ld\n", + to, timeout); + + /* Only if what we got back from curl is smaller than what we already had (-1 == infinity!), then update timeout */ if ( (to < *timeout) && |