Skip to content

Commit 0462198

Browse files
author
Andreas Nilsson
committed
SERVER-24523 Change uassert log level back to LOG(1)
1 parent a65f93c commit 0462198

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/mongo/util/assert_util.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -219,8 +219,8 @@ NOINLINE_DECL void uassertedWithLocation(int msgid,
219219
const char* file,
220220
unsigned line) {
221221
assertionCount.condrollover(++assertionCount.user);
222-
log() << "User Assertion: " << msgid << ":" << redact(msg) << ' ' << file << ' ' << dec << line
223-
<< endl;
222+
LOG(1) << "User Assertion: " << msgid << ":" << redact(msg) << ' ' << file << ' ' << dec << line
223+
<< endl;
224224
throw UserException(msgid, msg);
225225
}
226226

0 commit comments

Comments
 (0)