-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 SSSDBG_CONF_SETTINGS is reserved for configuration information. These pings are generally just noise (when they fail, this is logged at SSDBG_FATAL_FAILURE). We should only log these at SSSDBG_TRACE_INTERNAL. -----BEGIN PGP SIGNATURE----- Version: GnuPG v2
iEYEARECAAYFAlYvgvQACgkQeiVVYja6o6NeVQCgocyUqrHud6p+KyyDULRdtx+/ Vj0AoIEfXJAbEgwDEgAmDJBuRLNv0v+n =h2IT -----END PGP SIGNATURE-----
>From 9a53c342335ce68ec8196c5d05fecf8e12197411 Mon Sep 17 00:00:00 2001 From: Stephen Gallagher <[email protected]> Date: Tue, 27 Oct 2015 09:55:11 -0400 Subject: [PATCH] Monitor: Show service pings at debug level 8 SSSDBG_CONF_SETTINGS is reserved for configuration information. These pings are generally just noise (when they fail, this is logged at SSDBG_FATAL_FAILURE). We should only log these at SSSDBG_TRACE_INTERNAL. --- src/monitor/monitor.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/monitor/monitor.c b/src/monitor/monitor.c index 3776caba4ea8644e57bde098c7a6895093cbb9d3..9a634340424debd64080588ba814b9189ea16d04 100644 --- a/src/monitor/monitor.c +++ b/src/monitor/monitor.c @@ -2528,11 +2528,11 @@ static int service_send_ping(struct mt_svc *svc) if (!svc->conn) { DEBUG(SSSDBG_TRACE_INTERNAL, "Service not yet initialized\n"); return ENXIO; } - DEBUG(SSSDBG_CONF_SETTINGS,"Pinging %s\n", svc->name); + DEBUG(SSSDBG_TRACE_INTERNAL,"Pinging %s\n", svc->name); /* * Set up identity request * This should be a well-known path and method * for all services @@ -2590,11 +2590,11 @@ static void ping_check(DBusPendingCall *pending, void *data) switch (type) { case DBUS_MESSAGE_TYPE_METHOD_RETURN: /* ok peer replied, * make sure we reset the failure counter in the service structure */ - DEBUG(SSSDBG_CONF_SETTINGS,"Service %s replied to ping\n", svc->name); + DEBUG(SSSDBG_TRACE_INTERNAL,"Service %s replied to ping\n", svc->name); svc->failed_pongs = 0; break; case DBUS_MESSAGE_TYPE_ERROR: -- 2.5.0
0001-Monitor-Show-service-pings-at-debug-level-8.patch.sig
Description: PGP signature
_______________________________________________ sssd-devel mailing list [email protected] https://lists.fedorahosted.org/mailman/listinfo/sssd-devel
