summaryrefslogtreecommitdiff
path: root/src/mongo/db/index/index_descriptor.cpp
diff options
context:
space:
mode:
authorThomas Schubert <thomas.schubert@mongodb.com>2016-08-29 14:11:18 -0400
committerThomas Schubert <thomas.schubert@mongodb.com>2016-09-02 13:24:58 -0400
commit710a443a980b88a36d8c4ef0ea3cc0d375681908 (patch)
tree74c82c605c9846cf14072162596d6d9c327328c5 /src/mongo/db/index/index_descriptor.cpp
parent49b654c70e3df23d8fbba47d63a88a06c3d51f83 (diff)
downloadmongo-710a443a980b88a36d8c4ef0ea3cc0d375681908.tar.gz
SERVER-24991 log redaction for commands, concurrency, exec, index
Diffstat (limited to 'src/mongo/db/index/index_descriptor.cpp')
-rw-r--r--src/mongo/db/index/index_descriptor.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/mongo/db/index/index_descriptor.cpp b/src/mongo/db/index/index_descriptor.cpp
index 3e27759a3a9..368ebfa57e9 100644
--- a/src/mongo/db/index/index_descriptor.cpp
+++ b/src/mongo/db/index/index_descriptor.cpp
@@ -93,11 +93,4 @@ bool IndexDescriptor::areIndexOptionsEquivalent(const IndexDescriptor* other) co
rhs.second);
});
}
-
-void IndexDescriptor::_checkOk() const {
- if (_magic == 123987)
- return;
- log() << "uh oh: " << (void*)(this) << " " << _magic;
- invariant(0);
-}
}