diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2015-03-12 21:29:28 -0400 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2015-03-13 00:26:02 -0400 |
commit | 0e72da6fe8671d49b4d458519f5ac7600fd04f03 (patch) | |
tree | 7e955d8291f79ea72f6d2b84917121a4baeab3ae /src/journal-remote/microhttpd-util.c | |
parent | c066b4746b4d25e576c9dc976e35cf6915905802 (diff) |
journal-remote: downgrade routine messages to debug
https://bugs.freedesktop.org/show_bug.cgi?id=89486
Diffstat (limited to 'src/journal-remote/microhttpd-util.c')
-rw-r--r-- | src/journal-remote/microhttpd-util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/journal-remote/microhttpd-util.c b/src/journal-remote/microhttpd-util.c index a95fff18f3..b45c38d682 100644 --- a/src/journal-remote/microhttpd-util.c +++ b/src/journal-remote/microhttpd-util.c @@ -178,7 +178,7 @@ static int verify_cert_authorized(gnutls_session_t session) { if (r < 0) return log_error_errno(r, "gnutls_certificate_verification_status_print failed: %m"); - log_info("Certificate status: %s", out.data); + log_debug("Certificate status: %s", out.data); gnutls_free(out.data); return status == 0 ? 0 : -EPERM; @@ -280,7 +280,7 @@ int check_permissions(struct MHD_Connection *connection, int *code, char **hostn return -EPERM; } - log_info("Connection from %s", buf); + log_debug("Connection from %s", buf); if (hostname) { *hostname = buf; |