mirror of
https://github.com/element-hq/synapse.git
synced 2024-12-19 17:56:19 +03:00
Actually this should be debug logging
This commit is contained in:
parent
1040e9b648
commit
43b9a40370
1 changed files with 3 additions and 3 deletions
|
@ -2586,7 +2586,7 @@ class FederationHandler(BaseHandler):
|
||||||
if not invite_event:
|
if not invite_event:
|
||||||
raise AuthError(403, "Could not find invite")
|
raise AuthError(403, "Could not find invite")
|
||||||
|
|
||||||
logger.info("Checking auth on event %r", event.content)
|
logger.debug("Checking auth on event %r", event.content)
|
||||||
|
|
||||||
last_exception = None
|
last_exception = None
|
||||||
# for each public key in the 3pid invite event
|
# for each public key in the 3pid invite event
|
||||||
|
@ -2598,7 +2598,7 @@ class FederationHandler(BaseHandler):
|
||||||
if not key_name.startswith("ed25519:"):
|
if not key_name.startswith("ed25519:"):
|
||||||
continue
|
continue
|
||||||
|
|
||||||
logger.info(
|
logger.debug(
|
||||||
"Attempting to verify sig with key %s from %r "
|
"Attempting to verify sig with key %s from %r "
|
||||||
"against pubkey %r",
|
"against pubkey %r",
|
||||||
key_name, server, public_key_object,
|
key_name, server, public_key_object,
|
||||||
|
@ -2611,7 +2611,7 @@ class FederationHandler(BaseHandler):
|
||||||
decode_base64(public_key)
|
decode_base64(public_key)
|
||||||
)
|
)
|
||||||
verify_signed_json(signed, server, verify_key)
|
verify_signed_json(signed, server, verify_key)
|
||||||
logger.info(
|
logger.debug(
|
||||||
"Successfully verified sig with key %s from %r "
|
"Successfully verified sig with key %s from %r "
|
||||||
"against pubkey %r",
|
"against pubkey %r",
|
||||||
key_name, server, public_key_object,
|
key_name, server, public_key_object,
|
||||||
|
|
Loading…
Reference in a new issue