~mir-team/mir/rename-everything

« back to all changes in this revision

Viewing changes to src/server/report/logging/message_processor_report.cpp

  • Committer: Tarmac
  • Author(s): Robert Carr
  • Date: 2015-01-29 00:43:42 UTC
  • mfrom: (2266.1.1 port-trivial-reports)
  • Revision ID: tarmac-20150129004342-cc5fm1y7cdvtrwg8
Remove non invoked MessageProcessorReport method and event_deprecated guards in the process.

Approved by Kevin DuBois, Daniel van Vugt, PS Jenkins bot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 * Authored by: Alan Griffiths <alan@octopull.co.uk>
17
17
 */
18
18
 
19
 
#define MIR_INCLUDE_DEPRECATED_EVENT_HEADER
20
 
 
21
19
#include "message_processor_report.h"
22
20
#include "mir/logging/logger.h"
23
21
 
164
162
    if (pm != mediators.end())
165
163
        mediators.erase(mediator);
166
164
}
167
 
 
168
 
void mrl::MessageProcessorReport::sent_event(void const* mediator, MirSurfaceEvent const& event)
169
 
{
170
 
    std::ostringstream out;
171
 
    out << "mediator=" << mediator << ", sent event, surface id=" << event.id;
172
 
    log->log(ml::Severity::debug, out.str(), component);
173
 
}