summaryrefslogtreecommitdiff
path: root/src/mongo/util/assert_util.cpp
diff options
context:
space:
mode:
authorAndreas Nilsson <andreas.nilsson@mongodb.com>2016-07-11 15:13:41 -0400
committerAndreas Nilsson <andreas.nilsson@mongodb.com>2016-07-11 15:19:35 -0400
commit046219822d5c767e9454d7796752b7ad517b87de (patch)
tree9b2e9b33b5c852b4c91378385e0a9c78eb03ec5f /src/mongo/util/assert_util.cpp
parenta65f93c763978e5d7eb74485b79124ad936de038 (diff)
downloadmongo-046219822d5c767e9454d7796752b7ad517b87de.tar.gz
SERVER-24523 Change uassert log level back to LOG(1)
Diffstat (limited to 'src/mongo/util/assert_util.cpp')
-rw-r--r--src/mongo/util/assert_util.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/util/assert_util.cpp b/src/mongo/util/assert_util.cpp
index 428146bc8cc..a5062d466f7 100644
--- a/src/mongo/util/assert_util.cpp
+++ b/src/mongo/util/assert_util.cpp
@@ -219,8 +219,8 @@ NOINLINE_DECL void uassertedWithLocation(int msgid,
const char* file,
unsigned line) {
assertionCount.condrollover(++assertionCount.user);
- log() << "User Assertion: " << msgid << ":" << redact(msg) << ' ' << file << ' ' << dec << line
- << endl;
+ LOG(1) << "User Assertion: " << msgid << ":" << redact(msg) << ' ' << file << ' ' << dec << line
+ << endl;
throw UserException(msgid, msg);
}