summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordwight <dwight@10gen.com>2010-12-25 12:00:58 -0500
committerdwight <dwight@10gen.com>2010-12-25 12:00:58 -0500
commitcfda39963141157f9b2c44c322435575482ee212 (patch)
treed6f7789cecf49878624880ba5008f570d677f7dd
parent8e13302dfd36fc4c8c1d4b470e9303a2f95898ff (diff)
downloadmongo-cfda39963141157f9b2c44c322435575482ee212.tar.gz
remove extraneous logging
-rw-r--r--util/logfile.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/util/logfile.cpp b/util/logfile.cpp
index 99ff3bba631..350e39b89b7 100644
--- a/util/logfile.cpp
+++ b/util/logfile.cpp
@@ -118,11 +118,9 @@ namespace mongo {
#endif
,
S_IRUSR | S_IWUSR);
- log() << "TEMP logfile open " << _fd << endl;
if( _fd < 0 ) {
uasserted(13516, str::stream() << "couldn't open file " << name << " for writing " << errnoWithDescription());
}
- // log() << "\nWRITE TEST: " << write(_fd, "abc", 3) << ' ' << errno << endl;
}
LogFile::~LogFile() {