summaryrefslogtreecommitdiff
path: root/src/mongo/db/repl/rslog.cpp
diff options
context:
space:
mode:
authorSpencer T Brody <spencer@mongodb.com>2014-08-18 19:16:59 -0400
committerSpencer T Brody <spencer@mongodb.com>2014-08-19 12:10:46 -0400
commit0b190a580c13ff8b96a10fd9c9e6b18e01e44631 (patch)
treed86702535316aba9945fecb81014a578d33bbf72 /src/mongo/db/repl/rslog.cpp
parentfe11098d32f0e002349fd2513834f6c8928fe550 (diff)
downloadmongo-0b190a580c13ff8b96a10fd9c9e6b18e01e44631.tar.gz
SERVER-14950 Move rsLog to its own library
Diffstat (limited to 'src/mongo/db/repl/rslog.cpp')
-rw-r--r--src/mongo/db/repl/rslog.cpp47
1 files changed, 47 insertions, 0 deletions
diff --git a/src/mongo/db/repl/rslog.cpp b/src/mongo/db/repl/rslog.cpp
new file mode 100644
index 00000000000..9a02f64ce27
--- /dev/null
+++ b/src/mongo/db/repl/rslog.cpp
@@ -0,0 +1,47 @@
+/**
+* Copyright (C) 2008 10gen Inc.
+*
+* This program is free software: you can redistribute it and/or modify
+* it under the terms of the GNU Affero General Public License, version 3,
+* as published by the Free Software Foundation.
+*
+* This program is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+* GNU Affero General Public License for more details.
+*
+* You should have received a copy of the GNU Affero General Public License
+* along with this program. If not, see <http://www.gnu.org/licenses/>.
+*
+* As a special exception, the copyright holders give permission to link the
+* code of portions of this program with the OpenSSL library under certain
+* conditions as described in each individual source file and distribute
+* linked combinations including the program with the OpenSSL library. You
+* must comply with the GNU Affero General Public License in all respects for
+* all of the code used other than as permitted herein. If you modify file(s)
+* with this exception, you may extend this exception to your version of the
+* file(s), but you are not obligated to do so. If you do not wish to do so,
+* delete this exception statement from your version. If you delete this
+* exception statement from all source files in the program, then also delete
+* it in the license file.
+*/
+
+#include "mongo/platform/basic.h"
+
+#include "mongo/db/repl/rslog.h"
+
+#include "mongo/logger/tee.h"
+#include "mongo/util/ramlog.h"
+
+namespace mongo {
+namespace repl {
+
+ static RamLog* _rsLog = RamLog::get("rs");
+ logger::Tee* rsLog = _rsLog;
+
+ void fillRsLog(std::stringstream* s) {
+ _rsLog->toHTML(*s);
+ }
+
+} // namespace repl
+} // namespace mongo