diff options
author | Kaloian Manassiev <kaloian.manassiev@mongodb.com> | 2015-07-27 14:40:16 -0400 |
---|---|---|
committer | Kaloian Manassiev <kaloian.manassiev@mongodb.com> | 2015-07-28 15:07:52 -0400 |
commit | 327e99adcbc1430682d59dfc50c74088f6ae29e8 (patch) | |
tree | 153230e9a0feb6cf93706868ec92d75f4151a8a3 /src/mongo/s/request.cpp | |
parent | 789a8e2669c38ad5ebcbd07bff98d14d7354e421 (diff) | |
download | mongo-327e99adcbc1430682d59dfc50c74088f6ae29e8.tar.gz |
SERVER-18084 Cleanup includes
Diffstat (limited to 'src/mongo/s/request.cpp')
-rw-r--r-- | src/mongo/s/request.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mongo/s/request.cpp b/src/mongo/s/request.cpp index 2c330a80113..4e5b5626730 100644 --- a/src/mongo/s/request.cpp +++ b/src/mongo/s/request.cpp @@ -48,7 +48,6 @@ namespace mongo { -using std::endl; using std::string; Request::Request(Message& m, AbstractMessagingPort* p) @@ -90,7 +89,7 @@ void Request::process(int attempt) { Timer t; LOG(3) << "Request::process begin ns: " << getns() << " msg id: " << msgId << " op: " << op - << " attempt: " << attempt << endl; + << " attempt: " << attempt; _d.markSet(); @@ -122,7 +121,7 @@ void Request::process(int attempt) { } LOG(3) << "Request::process end ns: " << getns() << " msg id: " << msgId << " op: " << op - << " attempt: " << attempt << " " << t.millis() << "ms" << endl; + << " attempt: " << attempt << " " << t.millis() << "ms"; } void Request::reply(Message& response, const string& fromServer) { |