summaryrefslogtreecommitdiff
path: root/src/mongo/unittest/unittest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/unittest/unittest.cpp')
-rw-r--r--src/mongo/unittest/unittest.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mongo/unittest/unittest.cpp b/src/mongo/unittest/unittest.cpp
index 44aaaabd5e6..d1e10333372 100644
--- a/src/mongo/unittest/unittest.cpp
+++ b/src/mongo/unittest/unittest.cpp
@@ -113,9 +113,9 @@ namespace mongo {
Result * Suite::run( const std::string& filter, int runsPerTest ) {
- log(1) << "\t about to setupTests" << std::endl;
+ LOG(1) << "\t about to setupTests" << std::endl;
setupTests();
- log(1) << "\t done setupTests" << std::endl;
+ LOG(1) << "\t done setupTests" << std::endl;
Result * r = new Result( _name );
Result::cur = r;
@@ -123,7 +123,7 @@ namespace mongo {
for ( std::vector<TestHolder*>::iterator i=_tests.begin(); i!=_tests.end(); i++ ) {
TestHolder* tc = *i;
if ( filter.size() && tc->getName().find( filter ) == std::string::npos ) {
- log(1) << "\t skipping test: " << tc->getName() << " because doesn't match filter" << std::endl;
+ LOG(1) << "\t skipping test: " << tc->getName() << " because doesn't match filter" << std::endl;
continue;
}