summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLamont Nelson <lamont.nelson@mongodb.com>2020-02-24 18:41:32 -0500
committerLamont Nelson <lamont.nelson@mongodb.com>2020-02-24 18:41:32 -0500
commit683c0969bb225d4cb005db9d531d511065ae7244 (patch)
tree62c3191c7c1b6f9ce6d3c1d32a26f314a128482e
parentc1ccc3eb71d45425cdafd1060f716763492cfd9f (diff)
downloadmongo-683c0969bb225d4cb005db9d531d511065ae7244.tar.gz
format
-rw-r--r--src/mongo/client/sdam/topology_description.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mongo/client/sdam/topology_description.cpp b/src/mongo/client/sdam/topology_description.cpp
index ac25e940ef4..610fd215670 100644
--- a/src/mongo/client/sdam/topology_description.cpp
+++ b/src/mongo/client/sdam/topology_description.cpp
@@ -108,7 +108,10 @@ const boost::optional<ServerDescriptionPtr> TopologyDescription::findServerByAdd
boost::optional<ServerDescriptionPtr> TopologyDescription::installServerDescription(
const ServerDescriptionPtr& newServerDescription) {
- LOGV2_DEBUG(4333202, 2, "install server description {description}", "description"_attr = newServerDescription->toString());
+ LOGV2_DEBUG(4333202,
+ 2,
+ "install server description {description}",
+ "description"_attr = newServerDescription->toString());
boost::optional<ServerDescriptionPtr> previousDescription;
if (getType() == TopologyType::kSingle) {