summaryrefslogtreecommitdiff
path: root/src/mongo/s/request.cpp
diff options
context:
space:
mode:
authorAndy Schwerin <schwerin@mongodb.com>2015-11-03 12:18:05 -0500
committerAndy Schwerin <schwerin@mongodb.com>2015-11-09 16:48:33 -0500
commit7fc05bad65a96cba3a08eb79d1a7060199985e11 (patch)
tree86dde5dfa0f7a6dd21c651fbe8ff3d1d2717f998 /src/mongo/s/request.cpp
parent516a702d8fe87338d8b5e10ab6f2c4939ccbd5f8 (diff)
downloadmongo-7fc05bad65a96cba3a08eb79d1a7060199985e11.tar.gz
SERVER-20596 Remove unhelpful timer that shows up in mongos profiles.
Diffstat (limited to 'src/mongo/s/request.cpp')
-rw-r--r--src/mongo/s/request.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mongo/s/request.cpp b/src/mongo/s/request.cpp
index 0b0445346bc..1fe0ea63ec7 100644
--- a/src/mongo/s/request.cpp
+++ b/src/mongo/s/request.cpp
@@ -87,7 +87,6 @@ void Request::process(OperationContext* txn, int attempt) {
const MSGID msgId = _m.header().getId();
- Timer t;
LOG(3) << "Request::process begin ns: " << getnsIfPresent() << " msg id: " << msgId
<< " op: " << op << " attempt: " << attempt;
@@ -121,7 +120,7 @@ void Request::process(OperationContext* txn, int attempt) {
}
LOG(3) << "Request::process end ns: " << getnsIfPresent() << " msg id: " << msgId
- << " op: " << op << " attempt: " << attempt << " " << t.millis() << "ms";
+ << " op: " << op << " attempt: " << attempt;
}
void Request::reply(Message& response, const string& fromServer) {