Merge lp:~thomas-voss/location-service/be-verbose-about-starting-and-stopping-updates-for-testing into lp:location-service/trunk

Proposed by Thomas Voß
Status: Needs review
Proposed branch: lp:~thomas-voss/location-service/be-verbose-about-starting-and-stopping-updates-for-testing
Merge into: lp:location-service/trunk
Diff against target: 20 lines (+4/-0)
1 file modified
src/location_service/com/ubuntu/location/providers/gps/provider.cpp (+4/-0)
To merge this branch: bzr merge lp:~thomas-voss/location-service/be-verbose-about-starting-and-stopping-updates-for-testing
Reviewer Review Type Date Requested Status
PS Jenkins bot continuous-integration Needs Fixing
Ubuntu Phablet Team Pending
Review via email: mp+250600@code.launchpad.net

Commit message

Add verbose output for gps::Provider to allow forensics on starting/stopping providers.

Description of the change

Add verbose output for gps::Provider to allow forensics on starting/stopping providers.

To post a comment you must log in.
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)

Unmerged revisions

171. By Thomas Voß

Add verbose output for gps::Provider to allow forensics on starting/stopping providers.

170. By Launchpad Translations on behalf of phablet-team

Launchpad automatic translations update.

169. By Launchpad Translations on behalf of phablet-team

Launchpad automatic translations update.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'src/location_service/com/ubuntu/location/providers/gps/provider.cpp'
--- src/location_service/com/ubuntu/location/providers/gps/provider.cpp 2014-10-27 21:58:16 +0000
+++ src/location_service/com/ubuntu/location/providers/gps/provider.cpp 2015-02-23 11:09:21 +0000
@@ -83,12 +83,16 @@
8383
84void culg::Provider::start_position_updates()84void culg::Provider::start_position_updates()
85{85{
86 VLOG(10) << "> " << __PRETTY_FUNCTION__;
86 d->hal->start_positioning();87 d->hal->start_positioning();
88 VLOG(10) << "< " << __PRETTY_FUNCTION__;
87}89}
8890
89void culg::Provider::stop_position_updates()91void culg::Provider::stop_position_updates()
90{92{
93 VLOG(10) << "> " << __PRETTY_FUNCTION__;
91 d->hal->stop_positioning();94 d->hal->stop_positioning();
95 VLOG(10) << "< " << __PRETTY_FUNCTION__;
92}96}
9397
94void culg::Provider::start_velocity_updates()98void culg::Provider::start_velocity_updates()

Subscribers

People subscribed via source and target branches