mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-30 09:06:21 +01:00
better logging
This commit is contained in:
parent
7f50e165b6
commit
cda4dc0772
@ -561,7 +561,7 @@ found:
|
||||
/* remove a key from the index */
|
||||
bool BtreeBucket::unindex(const DiskLoc& thisLoc, IndexDetails& id, BSONObj& key, const DiskLoc& recordLoc ) {
|
||||
if ( key.objsize() > KeyMax ) {
|
||||
OCCASIONALLY problem() << "unindex: key too large to index, skipping " << id.indexNamespace() << /* ' ' << key.toString() << */ '\n';
|
||||
OCCASIONALLY problem() << "unindex: key too large to index, skipping " << id.indexNamespace() << /* ' ' << key.toString() << */ endl;
|
||||
return false;
|
||||
}
|
||||
|
||||
@ -904,7 +904,7 @@ found:
|
||||
{
|
||||
if ( toplevel ) {
|
||||
if ( key.objsize() > KeyMax ) {
|
||||
problem() << "Btree::insert: key too large to index, skipping " << idx.indexNamespace().c_str() << ' ' << key.objsize() << ' ' << key.toString() << '\n';
|
||||
problem() << "Btree::insert: key too large to index, skipping " << idx.indexNamespace().c_str() << ' ' << key.objsize() << ' ' << key.toString() << endl;
|
||||
return 3;
|
||||
}
|
||||
}
|
||||
@ -1033,7 +1033,7 @@ namespace mongo {
|
||||
if ( ! b->_pushBack(loc, key, ordering, DiskLoc()) ){
|
||||
// no room
|
||||
if ( key.objsize() > KeyMax ) {
|
||||
problem() << "Btree::insert: key too large to index, skipping " << idx.indexNamespace().c_str() << ' ' << key.objsize() << ' ' << key.toString() << '\n';
|
||||
problem() << "Btree::insert: key too large to index, skipping " << idx.indexNamespace().c_str() << ' ' << key.objsize() << ' ' << key.toString() << endl;
|
||||
}
|
||||
else {
|
||||
// bucket was full
|
||||
|
Loading…
Reference in New Issue
Block a user