raise the debug level for a common message
authorAndrew Tridgell <tridge@samba.org>
Wed, 12 Aug 2009 05:19:42 +0000 (15:19 +1000)
committerAndrew Tridgell <tridge@samba.org>
Wed, 12 Aug 2009 05:19:42 +0000 (15:19 +1000)
when a client disconnects we expect this to happen, so don't print an
error each time

source4/lib/tls/tls.c

index d4e8680a6bf34cf7acab952a92e9fdc18d1c53ad..ba2e9e431b3b94a4a9d286b1f4524faac25d4fad 100644 (file)
@@ -185,7 +185,7 @@ static int tls_destructor(struct tls_context *tls)
        int ret;
        ret = gnutls_bye(tls->session, GNUTLS_SHUT_WR);
        if (ret < 0) {
-               DEBUG(0,("TLS gnutls_bye failed - %s\n", gnutls_strerror(ret)));
+               DEBUG(4,("TLS gnutls_bye failed - %s\n", gnutls_strerror(ret)));
        }
        return 0;
 }