summaryrefslogtreecommitdiff
path: root/db/instance.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'db/instance.cpp')
-rw-r--r--db/instance.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/db/instance.cpp b/db/instance.cpp
index 676c3758a53..323e5bb6d29 100644
--- a/db/instance.cpp
+++ b/db/instance.cpp
@@ -92,7 +92,7 @@ namespace mongo {
if ( strncmp(ddd.getns(), "clusterstock", 12) != 0 ) {
static int q;
if ( ++q < 20 )
- cout << "TEMP skip " << ddd.getns() << endl;
+ out() << "TEMP skip " << ddd.getns() << endl;
goto skip;
}
#endif
@@ -102,7 +102,7 @@ namespace mongo {
char *p = m.data->_data;
int len = strlen(p);
if ( len > 400 )
- cout << curTimeMillis() % 10000 <<
+ out() << curTimeMillis() % 10000 <<
" long msg received, len:" << len <<
" ends with: " << p + len - 10 << endl;
bool end = strcmp("end", p) == 0;
@@ -169,7 +169,7 @@ namespace mongo {
}
}
else {
- cout << " operation isn't supported: " << m.data->operation() << endl;
+ out() << " operation isn't supported: " << m.data->operation() << endl;
assert(false);
}
@@ -178,7 +178,7 @@ namespace mongo {
DEV log = true;
if ( log || ms > 100 ) {
ss << ' ' << t.millis() << "ms";
- cout << ss.str().c_str() << endl;
+ out() << ss.str().c_str() << endl;
}
if ( database && database->profile >= 1 ) {
if ( database->profile >= 2 || ms >= 100 ) {
@@ -453,7 +453,7 @@ namespace mongo {
}
}
else {
- cout << " jnicall: operation isn't supported: " << m.data->operation() << endl;
+ mongo::out() << " jnicall: operation isn't supported: " << m.data->operation() << endl;
assert(false);
}
@@ -461,7 +461,7 @@ namespace mongo {
log = log || ctr++ % 128 == 0;
if ( log || ms > 100 ) {
ss << ' ' << t.millis() << "ms";
- cout << ss.str().c_str() << endl;
+ mongo::out() << ss.str().c_str() << endl;
}
if ( database && database->profile >= 1 ) {
if ( database->profile >= 2 || ms >= 100 ) {
@@ -511,14 +511,14 @@ namespace mongo {
/* not using log() herein in case we are called from segvhandler and we were already locked */
#undef exit
void dbexit(int rc, const char *why) {
- cout << "dbexit: " << why << "; flushing op log and files" << endl;
+ out() << "dbexit: " << why << "; flushing op log and files" << endl;
flushOpLog();
/* must do this before unmapping mem or you may get a seg fault */
closeAllSockets();
MemoryMappedFile::closeAllFiles();
- cout << "dbexit: really exiting now" << endl;
+ out() << "dbexit: really exiting now" << endl;
exit(rc);
}