diff options
author | Christian Grothoff <christian@grothoff.org> | 2017-11-01 10:41:45 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2017-11-01 10:41:45 +0100 |
commit | 07e115531b7990937c8597cf71a0cf4d5ea3f0e7 (patch) | |
tree | 032b71e22f2b2d3d1df4be13d408afe962ec54b0 | |
parent | 6b4313da618a164cbb68932fc6ccfe40ab5bfc62 (diff) |
be less verbose
-rw-r--r-- | src/exchange/taler-exchange-httpd_keystate.c | 8 |
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; |