summaryrefslogtreecommitdiff
path: root/src/mongo/util/paths.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/util/paths.h')
-rw-r--r--src/mongo/util/paths.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/util/paths.h b/src/mongo/util/paths.h
index 5ba3c64d8ae..6bfb39b4bc5 100644
--- a/src/mongo/util/paths.h
+++ b/src/mongo/util/paths.h
@@ -110,7 +110,7 @@ namespace mongo {
boost::filesystem::path dir = file.branch_path(); // parent_path in new boosts
- log(1) << "flushing directory " << dir.string() << endl;
+ LOG(1) << "flushing directory " << dir.string() << endl;
int fd = ::open(dir.string().c_str(), O_RDONLY); // DO NOT THROW OR ASSERT BEFORE CLOSING
massert(13650, str::stream() << "Couldn't open directory '" << dir.string() << "' for flushing: " << errnoWithDescription(), fd >= 0);