Created
April 25, 2014 18:13
-
-
Save amalgamatedclyde/11298436 to your computer and use it in GitHub Desktop.
logcat output
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
E/LocSvc_LocAdapterBase( 583): W/virtual void loc_core::LocAdapterBase::reportPosition(UlpLocation&, GpsLocationExtended&, void*, loc_sess_status, LocPosTechMask): default implementation invoked | |
E/LocSvc_LocAdapterBase( 583): W/virtual void loc_core::LocAdapterBase::reportSv(GpsSvStatus&, GpsLocationExtended&, void*): default implementation invoked | |
E/LocSvc_LocAdapterBase( 583): W/virtual void loc_core::LocAdapterBase::reportPosition(UlpLocation&, GpsLocationExtended&, void*, loc_sess_status, LocPosTechMask): default implementation invoked |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
if i print kwargs.items() the list is always empty. here is the code from the example:
def on_location(self, **kwargs):
self.gps_location = '\n'.join([
'{}={}'.format(k, v) for k, v in kwargs.items()])