From 5f9508a3b18660b8772eccff34e3cf70c16a9cbc Mon Sep 17 00:00:00 2001 From: Michael Davidsaver Date: Thu, 1 Feb 2018 20:04:03 -0800 Subject: [PATCH] demote getTransport() fialure message to debug the connect() will be retried, so this isn't fatal. --- src/remoteClient/clientContextImpl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/remoteClient/clientContextImpl.cpp b/src/remoteClient/clientContextImpl.cpp index 38270f7..3800503 100644 --- a/src/remoteClient/clientContextImpl.cpp +++ b/src/remoteClient/clientContextImpl.cpp @@ -4436,7 +4436,7 @@ private: } catch (std::exception& e) { - LOG(logLevelError, "getTransport() fails: %s\n", e.what()); + LOG(logLevelDebug, "getTransport() fails: %s", e.what()); return Transport::shared_pointer(); } }