summaryrefslogtreecommitdiff
path: root/src/mongo/db/repl/health.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/repl/health.cpp')
-rw-r--r--src/mongo/db/repl/health.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/mongo/db/repl/health.cpp b/src/mongo/db/repl/health.cpp
index f46a188c267..3351f2f8340 100644
--- a/src/mongo/db/repl/health.cpp
+++ b/src/mongo/db/repl/health.cpp
@@ -47,7 +47,6 @@
#include "mongo/util/goodies.h"
#include "mongo/util/log.h"
#include "mongo/util/mongoutils/html.h"
-#include "mongo/util/ramlog.h"
namespace mongo {
namespace repl {
@@ -57,9 +56,6 @@ namespace repl {
using namespace html;
- static RamLog * _rsLog = RamLog::get("rs");
- Tee* rsLog = _rsLog;
-
string ago(time_t t) {
if( t == 0 ) return "";
@@ -298,11 +294,6 @@ namespace repl {
s << _table();
}
-
- void fillRsLog(stringstream& s) {
- _rsLog->toHTML( s );
- }
-
const Member* ReplSetImpl::findById(unsigned id) const {
if( _self && id == _self->id() ) return _self;