summaryrefslogtreecommitdiff
path: root/src/mongo/util/paths.h
diff options
context:
space:
mode:
authorShaun Verch <shaun.verch@10gen.com>2012-10-24 10:45:27 -0700
committerShaun Verch <shaun.verch@10gen.com>2012-10-24 12:41:34 -0700
commit892aad0c2fd35985f12b052668f1e37195c17740 (patch)
tree17c9c1d67d9eb57fedadcb0c86337130c0028db7 /src/mongo/util/paths.h
parent0d61667c3870e9d0c9e04bd7475773ad3227e4e8 (diff)
downloadmongo-892aad0c2fd35985f12b052668f1e37195c17740.tar.gz
SERVER-7231 Use LOG(level) macro instead of log(level) function
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 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);