demote getTransport() fialure message to debug

the connect() will be retried, so this isn't fatal.
This commit is contained in:
Michael Davidsaver
2018-02-01 20:04:03 -08:00
parent d41d15d59e
commit 5f9508a3b1

View File

@@ -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();
}
}