diff options
author | Christian Grothoff <christian@grothoff.org> | 2021-03-01 14:08:15 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2021-03-01 14:08:15 +0100 |
commit | 2c8afda8b3ead9f63cd004b47365fc831428cf21 (patch) | |
tree | f68e76a50c72c44e7c27b6c60b5eca895aa6ec40 /src/util/url.c | |
parent | 15ed6ffb07e2c1b87f08a1b168e76c743a2ae944 (diff) | |
download | exchange-2c8afda8b3ead9f63cd004b47365fc831428cf21.tar.gz exchange-2c8afda8b3ead9f63cd004b47365fc831428cf21.tar.bz2 exchange-2c8afda8b3ead9f63cd004b47365fc831428cf21.zip |
remove deadlocking log statements
Diffstat (limited to 'src/util/url.c')
-rw-r--r-- | src/util/url.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/util/url.c b/src/util/url.c index f2298c0f..5962a18b 100644 --- a/src/util/url.c +++ b/src/util/url.c @@ -247,8 +247,9 @@ TALER_url_join (const char *base_url, { /* Must be an actual base URL! */ GNUNET_log (GNUNET_ERROR_TYPE_ERROR, - "Base URL `%s' does not end with '/'\n", - base_url); + "Base URL `%s' does not end with '/', cannot join with `%s'\n", + base_url, + path); return NULL; } if ('/' == path[0]) |