summaryrefslogtreecommitdiff
path: root/src/mongo/util/background.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/util/background.cpp')
-rw-r--r--src/mongo/util/background.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/util/background.cpp b/src/mongo/util/background.cpp
index f1c89633268..4fca89b5310 100644
--- a/src/mongo/util/background.cpp
+++ b/src/mongo/util/background.cpp
@@ -64,10 +64,10 @@ namespace mongo {
run();
}
catch ( std::exception& e ) {
- log( LL_ERROR ) << "backgroundjob " << name() << "error: " << e.what() << endl;
+ LOG( LL_ERROR ) << "backgroundjob " << name() << "error: " << e.what() << endl;
}
catch(...) {
- log( LL_ERROR ) << "uncaught exception in BackgroundJob " << name() << endl;
+ LOG( LL_ERROR ) << "uncaught exception in BackgroundJob " << name() << endl;
}
{