summaryrefslogtreecommitdiff
path: root/src/exchange
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2017-11-01 10:41:45 +0100
committerChristian Grothoff <christian@grothoff.org>2017-11-01 10:41:45 +0100
commit07e115531b7990937c8597cf71a0cf4d5ea3f0e7 (patch)
tree032b71e22f2b2d3d1df4be13d408afe962ec54b0 /src/exchange
parent6b4313da618a164cbb68932fc6ccfe40ab5bfc62 (diff)
downloadexchange-07e115531b7990937c8597cf71a0cf4d5ea3f0e7.tar.gz
exchange-07e115531b7990937c8597cf71a0cf4d5ea3f0e7.tar.bz2
exchange-07e115531b7990937c8597cf71a0cf4d5ea3f0e7.zip
be less verbose
Diffstat (limited to 'src/exchange')
-rw-r--r--src/exchange/taler-exchange-httpd_keystate.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/exchange/taler-exchange-httpd_keystate.c b/src/exchange/taler-exchange-httpd_keystate.c
index 07ccd6109..be87f6d49 100644
--- a/src/exchange/taler-exchange-httpd_keystate.c
+++ b/src/exchange/taler-exchange-httpd_keystate.c
@@ -677,7 +677,7 @@ reload_keys_denom_iter (void *cls,
expire_deposit = GNUNET_TIME_absolute_ntoh (dki->issue.properties.expire_deposit);
if (expire_deposit.abs_value_us < now.abs_value_us)
{
- GNUNET_log (GNUNET_ERROR_TYPE_INFO,
+ GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
"Skipping expired denomination key `%s'\n",
alias);
return GNUNET_OK;
@@ -729,7 +729,7 @@ reload_keys_denom_iter (void *cls,
start = GNUNET_TIME_absolute_ntoh (dki->issue.properties.start);
if (start.abs_value_us > horizon.abs_value_us)
{
- GNUNET_log (GNUNET_ERROR_TYPE_INFO,
+ GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
"Skipping future denomination key `%s' (%s), validity starts at %s\n",
alias,
GNUNET_h2s (&dki->issue.properties.denom_hash),
@@ -814,7 +814,7 @@ reload_keys_sign_iter (void *cls,
if (GNUNET_TIME_absolute_ntoh (ski->issue.start).abs_value_us >
horizon.abs_value_us)
{
- GNUNET_log (GNUNET_ERROR_TYPE_INFO,
+ GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
"Skipping future signing key `%s'\n",
filename);
return GNUNET_OK;
@@ -823,7 +823,7 @@ reload_keys_sign_iter (void *cls,
if (GNUNET_TIME_absolute_ntoh (ski->issue.expire).abs_value_us <
now.abs_value_us)
{
- GNUNET_log (GNUNET_ERROR_TYPE_INFO,
+ GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
"Skipping expired signing key `%s'\n",
filename);
return GNUNET_OK;