summaryrefslogtreecommitdiff
path: root/src/mongo/db/commands/test_commands.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/commands/test_commands.cpp
parent49b654c70e3df23d8fbba47d63a88a06c3d51f83 (diff)
downloadmongo-710a443a980b88a36d8c4ef0ea3cc0d375681908.tar.gz
SERVER-24991 log redaction for commands, concurrency, exec, index
Diffstat (limited to 'src/mongo/db/commands/test_commands.cpp')
-rw-r--r--src/mongo/db/commands/test_commands.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/commands/test_commands.cpp b/src/mongo/db/commands/test_commands.cpp
index 12ae5131616..47ecb862d60 100644
--- a/src/mongo/db/commands/test_commands.cpp
+++ b/src/mongo/db/commands/test_commands.cpp
@@ -81,7 +81,7 @@ public:
string& errmsg,
BSONObjBuilder& result) {
string coll = cmdObj["godinsert"].valuestrsafe();
- log() << "test only command godinsert invoked coll:" << coll << endl;
+ log() << "test only command godinsert invoked coll:" << coll;
uassert(13049, "godinsert must specify a collection", !coll.empty());
string ns = dbname + "." + coll;
BSONObj obj = cmdObj["obj"].embeddedObjectUserCheck();
@@ -160,7 +160,7 @@ public:
int,
string& errmsg,
BSONObjBuilder& result) {
- log() << "test only command sleep invoked" << endl;
+ log() << "test only command sleep invoked";
long long millis = 0;
if (cmdObj["secs"] || cmdObj["millis"]) {