diff options
Diffstat (limited to 'src/mongo/util/paths.h')
-rw-r--r-- | src/mongo/util/paths.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/util/paths.h b/src/mongo/util/paths.h index e7ca6d5d17c..c75a7e4f737 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); |