summaryrefslogtreecommitdiff
path: root/src/util/url.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2021-03-01 14:08:15 +0100
committerChristian Grothoff <christian@grothoff.org>2021-03-01 14:08:15 +0100
commit2c8afda8b3ead9f63cd004b47365fc831428cf21 (patch)
treef68e76a50c72c44e7c27b6c60b5eca895aa6ec40 /src/util/url.c
parent15ed6ffb07e2c1b87f08a1b168e76c743a2ae944 (diff)
downloadexchange-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.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/util/url.c b/src/util/url.c
index f2298c0f1..5962a18b2 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])