commit 55a4dab8a50c0255228e4a2e2498a7c5c73d1595
parent 551f2990953a273d4b58db00772aa812b7061f52
Author: Martin Schanzenbach <schanzen@gnunet.org>
Date: Sun, 23 Mar 2025 22:21:13 +0100
Remove debug logging
Diffstat:
2 files changed, 0 insertions(+), 12 deletions(-)
diff --git a/src/backend/taler-merchant-httpd.c b/src/backend/taler-merchant-httpd.c
@@ -1931,9 +1931,6 @@ url_handler (void *cls,
}
else if (is_basic_auth)
{
- GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
- "Got basic auth %s\n",
- auth);
/* Handle token endpoint slightly differently: Only allow
* instance password (Basic auth) OR
* refresh token (Bearer auth) to retrieve access token.
@@ -1969,9 +1966,6 @@ url_handler (void *cls,
}
else /* Check bearer token */
{
- GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
- "Got bearer auth %s\n",
- auth);
if (NULL != hc->instance)
{
if (GNUNET_is_zero (&hc->instance->auth.auth_hash))
diff --git a/src/testing/testing_api_cmd_instance_token.c b/src/testing/testing_api_cmd_instance_token.c
@@ -158,8 +158,6 @@ token_instance_cb (void *cls,
free (js);
TALER_TESTING_FAIL (tis->is);
}
- GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
- "Got token: `%s'\n", tis->token);
break;
case MHD_HTTP_BAD_REQUEST:
/* likely invalid auth value, we do not check client-side */
@@ -202,13 +200,9 @@ set_token_instance_run (void *cls,
tok_cmd = TALER_TESTING_interpreter_lookup_command (
is,
token_job_label);
- GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
- "Getting token from: `%s'\n", token_job_label);
TALER_TESTING_get_trait_bearer_token (tok_cmd,
&token);
GNUNET_assert (NULL != token);
- GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
- "Got: `%s'\n", token);
GNUNET_asprintf (&authorization,
"%s: Bearer %s",