summaryrefslogtreecommitdiff
path: root/location
diff options
context:
space:
mode:
authorqctecmdr <qctecmdr@localhost>2019-09-05 20:01:40 -0700
committerGerrit - the friendly Code Review server <code-review@localhost>2019-09-05 20:01:40 -0700
commit1c669d75d64c0150ff453e90d879789f02fccb59 (patch)
tree26561b72a2bba34871e9302be81413e50d6c61e1 /location
parent095e7d6e965239c8f24a3a620fcc5ea1faf8340c (diff)
parent0df749e3635c8568c38babdfad81a4b0d1e5ce39 (diff)
downloadgps-1c669d75d64c0150ff453e90d879789f02fccb59.tar.gz
Merge "Adding one level of context swith for Geofence_add"
Diffstat (limited to 'location')
-rw-r--r--location/LocationAPIClientBase.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/location/LocationAPIClientBase.h b/location/LocationAPIClientBase.h
index fddae60..098000c 100644
--- a/location/LocationAPIClientBase.h
+++ b/location/LocationAPIClientBase.h
@@ -488,6 +488,7 @@ private:
for (size_t i = 0; i < count; i++) {
ids[i] = mAPI.mGeofenceBiDict.getId(sessions[i]);
}
+ LOC_LOGD("%s:]Returned geofence-id: %d in add geofence", __FUNCTION__, *ids);
mAPI.onAddGeofencesCb(count, errors, ids);
free(ids);
}
@@ -505,6 +506,7 @@ private:
for (size_t i = 0; i < count; i++) {
ids[i] = mRemovedGeofenceBiDict->getId(sessions[i]);
}
+ LOC_LOGD("%s:]Returned geofence-id: %d in remove geofence", __FUNCTION__, *ids);
mAPI.onRemoveGeofencesCb(count, errors, ids);
free(ids);
delete(mRemovedGeofenceBiDict);