summaryrefslogtreecommitdiff
path: root/s
diff options
context:
space:
mode:
authorEliot Horowitz <eliot@10gen.com>2011-05-27 18:34:51 -0400
committerEliot Horowitz <eliot@10gen.com>2011-05-27 18:35:45 -0400
commit1fd3656455e9ac7d6b77379f19d2ef7fb5ceaae8 (patch)
treec67624a78627b430a64949fd3e73686cea192cfb /s
parent191b585ef94a5f191b77640ca9ab7ea7dda83407 (diff)
downloadmongo-1fd3656455e9ac7d6b77379f19d2ef7fb5ceaae8.tar.gz
increased assert verbosity
Diffstat (limited to 's')
-rw-r--r--s/d_state.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/s/d_state.cpp b/s/d_state.cpp
index ad6f3fe3c8b..59ab385f7c3 100644
--- a/s/d_state.cpp
+++ b/s/d_state.cpp
@@ -75,7 +75,7 @@ namespace mongo {
<< " before [" << _shardName << "] "
<< " got [" << name << "] "
;
- uasserted( 13298 , ss.str() );
+ msgasserted( 13298 , ss.str() );
}
void ShardingState::gotShardHost( string host ) {
@@ -97,7 +97,7 @@ namespace mongo {
<< " before [" << _shardHost << "] "
<< " got [" << host << "] "
;
- uasserted( 13299 , ss.str() );
+ msgasserted( 13299 , ss.str() );
}
void ShardingState::resetShardingState() {