~ubuntu-branches/ubuntu/wily/mir/wily-proposed

« back to all changes in this revision

Viewing changes to src/server/scene/scene_report.cpp

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release
  • Date: 2014-01-08 02:04:38 UTC
  • mto: This revision was merged to the branch mainline in revision 58.
  • Revision ID: package-import@ubuntu.com-20140108020438-e1npu0pm7qdv5wc4
Tags: upstream-0.1.3+14.04.20140108
ImportĀ upstreamĀ versionĀ 0.1.3+14.04.20140108

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
    std::stringstream ss;
51
51
    ss << "surface_created(" << surface << " [\"" << surface->name() << "\"])";
52
52
 
53
 
    logger->log<Logger::informational>(ss.str(), component);
 
53
    logger->log(Logger::informational, ss.str(), component);
54
54
}
55
55
 
56
56
void ml::SceneReport::surface_added(ms::BasicSurface* const surface)
73
73
 
74
74
    ss << " - INFO surface count=" << surfaces.size();
75
75
 
76
 
    logger->log<Logger::informational>(ss.str(), component);
 
76
    logger->log(Logger::informational, ss.str(), component);
77
77
}
78
78
 
79
79
void ml::SceneReport::surface_removed(ms::BasicSurface* const surface)
96
96
 
97
97
    ss << " - INFO surface count=" << surfaces.size();
98
98
 
99
 
    logger->log<Logger::informational>(ss.str(), component);
 
99
    logger->log(Logger::informational, ss.str(), component);
100
100
}
101
101
 
102
102
void ml::SceneReport::surface_deleted(ms::BasicSurface* const surface)
122
122
 
123
123
    ss << " - INFO surface count=" << surfaces.size() << std::endl;
124
124
 
125
 
    logger->log<Logger::informational>(ss.str(), component);
 
125
    logger->log(Logger::informational, ss.str(), component);
126
126
}