From feacf3ef135236922b36602281aa7f5a4cf052a0 Mon Sep 17 00:00:00 2001 From: Vinnie Falco Date: Tue, 17 Sep 2013 17:32:42 -0700 Subject: [PATCH] Update LogJournal for new Journal interface --- src/ripple_basics/log/LogJournal.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/ripple_basics/log/LogJournal.h b/src/ripple_basics/log/LogJournal.h index f7f349364e..8c68d7cf48 100644 --- a/src/ripple_basics/log/LogJournal.h +++ b/src/ripple_basics/log/LogJournal.h @@ -28,7 +28,6 @@ public: void write (Journal::Severity severity, std::string const& text) { - // FIXME! LogSink::get()->write (text, convertSeverity (severity), m_partition.getName()); } @@ -47,7 +46,7 @@ public: template static Journal get () { - return Journal (SharedSingleton >::get ( + return Journal (*SharedSingleton >::get ( SingletonLifetime::neverDestroyed)); } };