Use injected Logs

This commit is contained in:
Vinnie Falco
2015-09-19 11:06:12 -07:00
parent fa796a2eb5
commit df6ac8f7f5
35 changed files with 176 additions and 133 deletions

View File

@@ -61,10 +61,10 @@ ServerHandlerImp::ServerHandlerImp (Application& app, Stoppable& parent,
: ServerHandler (parent)
, app_ (app)
, m_resourceManager (resourceManager)
, m_journal (deprecatedLogs().journal("Server"))
, m_journal (app_.logs().journal("Server"))
, m_networkOPs (networkOPs)
, m_server (HTTP::make_Server(
*this, io_service, deprecatedLogs().journal("Server")))
*this, io_service, app_.logs().journal("Server")))
, m_jobQueue (jobQueue)
{
auto const& group (cm.group ("rpc"));