~phablet-team/media-hub/fix-1506953

« back to all changes in this revision

Viewing changes to src/core/media/service_skeleton.cpp

  • Committer: Jim Hodapp
  • Date: 2016-07-19 21:22:18 UTC
  • Revision ID: jim.hodapp@canonical.com-20160719212218-pqeexxk39x6jby5l
Get rid of unnecessary debug statements

Show diffs side-by-side

added added

removed removed

Lines of Context:
117
117
 
118
118
    void handle_create_session(const core::dbus::Message::Ptr& msg)
119
119
    {
120
 
        MH_TRACE("");
121
 
 
122
120
        auto session_info = create_session_info();
123
121
 
124
122
        dbus::types::ObjectPath op{std::get<0>(session_info)};
874
872
 
875
873
std::shared_ptr<media::Player> media::ServiceSkeleton::create_session(const media::Player::Configuration& config)
876
874
{
877
 
    MH_TRACE("");
878
875
    return d->configuration.impl->create_session(config);
879
876
}
880
877