replace cerr with cout for all server files

This commit is contained in:
Eliot Horowitz
2009-10-16 11:39:59 -04:00
parent 411b4d279e
commit e48db1f60a
11 changed files with 18 additions and 18 deletions

View File

@@ -32,7 +32,7 @@ namespace mongo {
#ifdef JNI_DEBUG
#undef JNI_DEBUG
#define JNI_DEBUG(x) cerr << x << endl
#define JNI_DEBUG(x) cout << x << endl
#else
#undef JNI_DEBUG
#define JNI_DEBUG(x)
@@ -276,7 +276,7 @@ namespace mongo {
JavaJSImpl::~JavaJSImpl() {
if ( _jvm ) {
_jvm->DestroyJavaVM();
cerr << "Destroying JVM" << endl;
cout << "Destroying JVM" << endl;
}
}