react-native-background-geolocation: Android app not tracking location when app is killed
Your Environment
- Plugin version: 3.9.1
- Platform: Android
- OS version: 5.1.1
- Device manufacturer / model: Vivo Y51L
- React Native version (
react-native -v
): ^0.64.0 - Plugin config
const bgConfig = {
url: `https://app.example.com/api/offline-data`,
autoSync: true,
debug: true,
backgroundPermissionRationale: {
title: "Allow {applicationName} to access this device's location even when closed or not in use.",
message: "This app collects location data to enable recording your trips to work and calculate distance-travelled.",
positiveAction: 'Change to "{backgroundPermissionOptionLabel}"',
negativeAction: 'Cancel'
},
locationAuthorizationRequest: Platform.OS === 'ios' ? 'WhenInUse' : 'Always',
preventSuspend: false,
stopTimeout: 5,
params: {
orderId,
platform: Platform.OS
},
locationsOrderDirection: "ASC",
maxDaysToPersist: 14,
showsBackgroundLocationIndicator: true,//<~ For IOS only
debug: false,
enableHeadless: true,
desiredAccuracy: BackgroundGeolocation.DESIRED_ACCURACY_HIGH,
distanceFilter: 10,
logLevel: BackgroundGeolocation.LOG_LEVEL_VERBOSE,
stopOnTerminate: false,
startOnBoot: true,
foregroundService: true,
notification: {
sticky: true,
title: 'App Tracking',
text: 'Your live trip is started.',
channelName: 'App Tracker',
smallIcon: 'mipmap/ic_notification', // <-- defaults to app icon
largeIcon: 'mipmap/ic_launcher',
priority: BackgroundGeolocation.NOTIFICATION_PRIORITY_HIGH,
},
};
Expected Behavior
App should track location when too is killed
Actual Behavior
When app is in background or foreground it tracks well. But when app is killed it stops tracking. Even debug sound stops coming after the app is killed. We are not using mock location app and doing a real ride
Steps to Reproduce
- Open the app
- Start tracking
- Kill the app
- You wil see now app has stopped tracking
Context
Debug logs
Logs
05-28 18:38:48.344 DEBUG [TSConfig d] ℹ️ Persist config, dirty: [backgroundPermissionRationale, backgroundPermissionRationale.title, backgroundPermissionRationale.message, backgroundPermissionRationale.negativeAction, debug, desiredAccuracy, enableHeadless, logLevel, logMaxDays, maxDaysToPersist, notification, notification.title, notification.text, notification.smallIcon, notification.largeIcon, notification.priority, notification.sticky, notification.channelName, params, startOnBoot, stopOnTerminate, url]
05-28 18:38:48.362 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 0)
╠═════════════════════════════════════════════
05-28 18:38:48.388 DEBUG [c e]
ℹ️ LocationAuthorization: Permission granted
05-28 18:38:48.404 INFO [ActivityRecognitionService b]
🎾 Start motion-activity updates
05-28 18:38:48.410 DEBUG [HttpService startMonitoringConnectivityChanges]
🎾 Start monitoring connectivity changes
05-28 18:38:48.410 INFO [TSScheduleManager oneShot]
⏰ Scheduled OneShot: TERMINATE_EVENT in 10000ms (jobID: -1708771588)
05-28 18:38:48.412 DEBUG [a c]
🎾 Start monitoring powersave changes
05-28 18:38:48.429 INFO [HeartbeatService c]
🔴 Stop heartbeat
05-28 18:38:48.444 DEBUG [c f]
ℹ️ LocationAuthorization: Permission granted
05-28 18:38:48.445 INFO [TrackingService a]
🔵 setPace: false → false
05-28 18:38:48.462 DEBUG [HttpService a]
╔═════════════════════════════════════════════
║ 📶 Connectivity change: connected? true
╠═════════════════════════════════════════════
05-28 18:38:48.484 DEBUG [TSLocationManagerActivity execute] locationsettings
05-28 18:38:48.486 DEBUG [TSConfig translateDesiredAccuracy] translateDesiredAccuracy (true): -1
05-28 18:38:48.497 DEBUG [TSConfig d] ℹ️ Persist config, dirty: [isMoving]
05-28 18:38:48.501 INFO [HeartbeatService c]
🔴 Stop heartbeat
05-28 18:38:48.508 INFO [ActivityRecognitionService b]
🎾 Start motion-activity updates
05-28 18:38:48.512 DEBUG [c f]
ℹ️ LocationAuthorization: Permission granted
05-28 18:38:48.513 INFO [TrackingService a]
🔵 setPace: false → true
05-28 18:38:48.588 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:38:48.590 INFO [TrackingService h]
╔═════════════════════════════════════════════
║ TrackingService motionchange: true
╠═════════════════════════════════════════════
05-28 18:38:48.597 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:38:48.627 DEBUG [AbstractService a] ⚙️︎ finish LocationRequestService [eventCount: 0, sticky: false]
05-28 18:38:48.650 DEBUG [TSLocationManagerActivity stop] eventCount: 0
05-28 18:38:48.654 DEBUG [AbstractService onDestroy]
🔴 LocationRequestService destroyed
05-28 18:38:48.746 DEBUG [AbstractService a]
🎾 LocationRequestService [eventCount: 1]
05-28 18:38:48.750 INFO [LocationRequestService a]
ℹ️ Location availability: true
05-28 18:38:48.751 DEBUG [AbstractService a] ⚙️︎ finish LocationRequestService [eventCount: 0, sticky: false]
05-28 18:38:48.817 DEBUG [AbstractService a]
🎾 LocationRequestService [eventCount: 1]
05-28 18:38:48.822 INFO [LocationRequestService b]
╔═════════════════════════════════════════════
║ motionchange LocationResult: 2
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.853313,72.112390 acc=180 et=+1h16m56s671ms alt=35.5161483089633 {Bundle[mParcelledData.dataSize=52]}], age: 4330ms, time: 1622207324490
05-28 18:38:48.880 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 180.0
05-28 18:38:48.933 DEBUG [LocationRequestService b] SingleLocationRequest 2 isFinished? false
05-28 18:38:48.934 DEBUG [AbstractService a] ⚙️︎ finish LocationRequestService [eventCount: 0, sticky: true]
05-28 18:38:49.021 DEBUG [AbstractService onDestroy]
🔴 LocationRequestService destroyed
05-28 18:38:49.280 DEBUG [TSLocationManagerActivity onDestroy]
05-28 18:38:49.464 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 0)
╠═════════════════════════════════════════════
05-28 18:38:51.095 DEBUG [TSConfig d] ℹ️ Persist config, dirty: [isMoving]
05-28 18:38:51.110 INFO [TSLocationManager requestLocationUpdates]
🎾 Location-services: ON
05-28 18:38:51.114 DEBUG [TSLocationManager clearLastOdometerLocation]
ℹ️ Clear last odometer location
05-28 18:38:51.116 INFO [ActivityRecognitionService c]
🔴 Stop motion-activity updates
05-28 18:38:51.118 DEBUG [TSGeofenceManager c] ℹ️ Persist monitored geofences: []
05-28 18:38:51.119 DEBUG [TSGeofenceManager e]
🔴 Stop monitoring geofences
05-28 18:38:51.124 INFO [HeartbeatService c]
🔴 Stop heartbeat
05-28 18:38:51.131 DEBUG [HttpService stopMonitoringConnectivityChanges]
🔴 Stop monitoring connectivity changes
05-28 18:38:51.135 DEBUG [a d]
🔴 Stop monitoring powersave changes
05-28 18:38:51.164 DEBUG [AbstractService a] ⚙️︎ finish LocationRequestService [eventCount: 0, sticky: false]
05-28 18:38:51.180 DEBUG [c e]
ℹ️ LocationAuthorization: Permission granted
05-28 18:38:51.259 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: false]
05-28 18:38:51.313 DEBUG [AbstractService a] ⚙️︎ finish GeofencingService [eventCount: 0, sticky: false]
05-28 18:38:51.322 DEBUG [AbstractService onDestroy]
🔴 LocationRequestService destroyed
05-28 18:38:51.359 WARN [RNBackgroundGeolocationModule ready]
⚠️ #ready already called. Redirecting to #setConfig
05-28 18:38:51.362 DEBUG [AbstractService onDestroy]
🔴 TrackingService destroyed
05-28 18:38:51.366 INFO [ActivityRecognitionService b]
🎾 Start motion-activity updates
05-28 18:38:51.373 DEBUG [HttpService startMonitoringConnectivityChanges]
🎾 Start monitoring connectivity changes
05-28 18:38:51.376 DEBUG [a c]
🎾 Start monitoring powersave changes
05-28 18:38:51.424 INFO [HeartbeatService c]
🔴 Stop heartbeat
05-28 18:38:51.428 DEBUG [AbstractService a] ⚙️︎ finish ActivityRecognitionService [eventCount: 0, sticky: false]
05-28 18:38:51.430 DEBUG [TSConfig d] ℹ️ Persist config, dirty: [params]
05-28 18:38:51.445 DEBUG [c f]
ℹ️ LocationAuthorization: Permission granted
05-28 18:38:51.445 DEBUG [AbstractService onDestroy]
🔴 GeofencingService destroyed
05-28 18:38:51.446 INFO [TrackingService a]
🔵 setPace: false → false
05-28 18:38:51.463 INFO [TSScheduleManager oneShot]
⏰ Oneshot TERMINATE_EVENT is already pending
05-28 18:38:51.477 DEBUG [HttpService a]
╔═════════════════════════════════════════════
║ 📶 Connectivity change: connected? true
╠═════════════════════════════════════════════
05-28 18:38:51.481 DEBUG [AbstractService onDestroy]
🔴 ActivityRecognitionService destroyed
05-28 18:38:51.511 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 0)
╠═════════════════════════════════════════════
05-28 18:38:51.525 DEBUG [TSLocationManagerActivity execute] locationsettings
05-28 18:38:51.527 DEBUG [TSConfig translateDesiredAccuracy] translateDesiredAccuracy (true): -1
05-28 18:38:51.533 DEBUG [TSConfig d] ℹ️ Persist config, dirty: [isMoving]
05-28 18:38:51.538 INFO [HeartbeatService c]
🔴 Stop heartbeat
05-28 18:38:51.566 INFO [ActivityRecognitionService b]
🎾 Start motion-activity updates
05-28 18:38:51.570 DEBUG [c f]
ℹ️ LocationAuthorization: Permission granted
05-28 18:38:51.571 INFO [TrackingService a]
🔵 setPace: false → true
05-28 18:38:51.576 DEBUG [TSLocationManagerActivity stop] eventCount: 0
05-28 18:38:51.641 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:38:51.643 INFO [TrackingService h]
╔═════════════════════════════════════════════
║ TrackingService motionchange: true
╠═════════════════════════════════════════════
05-28 18:38:51.644 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:38:51.709 DEBUG [AbstractService a] ⚙️︎ finish LocationRequestService [eventCount: 0, sticky: false]
05-28 18:38:51.734 DEBUG [AbstractService onDestroy]
🔴 LocationRequestService destroyed
05-28 18:38:51.784 DEBUG [AbstractService a]
🎾 LocationRequestService [eventCount: 1]
05-28 18:38:51.786 INFO [LocationRequestService a]
ℹ️ Location availability: true
05-28 18:38:51.788 DEBUG [AbstractService a] ⚙️︎ finish LocationRequestService [eventCount: 0, sticky: false]
05-28 18:38:51.819 DEBUG [TSLocationManagerActivity onDestroy]
05-28 18:38:52.040 DEBUG [AbstractService onDestroy]
🔴 LocationRequestService destroyed
05-28 18:38:52.187 DEBUG [AbstractService a]
🎾 LocationRequestService [eventCount: 1]
05-28 18:38:52.191 INFO [LocationRequestService b]
╔═════════════════════════════════════════════
║ motionchange LocationResult: 4
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.853313,72.112390 acc=180 et=+1h17m4s269ms alt=35.87774207647388 vel=0.0 bear=90.0 {Bundle[mParcelledData.dataSize=52]}], age: 102ms, time: 1622207332088
05-28 18:38:52.223 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 180.0
05-28 18:38:52.232 DEBUG [LocationRequestService b] SingleLocationRequest 4 isFinished? false
05-28 18:38:52.233 DEBUG [AbstractService a] ⚙️︎ finish LocationRequestService [eventCount: 0, sticky: true]
05-28 18:38:52.481 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 0)
╠═════════════════════════════════════════════
05-28 18:38:57.400 DEBUG [AbstractService a]
🎾 LocationRequestService [eventCount: 1]
05-28 18:38:57.405 INFO [LocationRequestService b]
╔═════════════════════════════════════════════
║ motionchange LocationResult: 4
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.844892,72.134467 acc=13 et=+1h17m9s543ms alt=35.86721315897228 vel=2.58124 bear=169.0 {Bundle[mParcelledData.dataSize=52]}], age: 40ms, time: 1622207338000
05-28 18:38:57.409 INFO [TSLocationManager onSingleLocationResult]
🔵 Acquired motionchange position, isMoving: true
05-28 18:38:57.410 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 180.0
05-28 18:38:57.429 DEBUG [AbstractService a] ⚙️︎ finish LocationRequestService [eventCount: 0, sticky: false]
05-28 18:38:57.440 DEBUG [AbstractService onDestroy]
🔴 LocationRequestService destroyed
05-28 18:38:57.472 INFO [TSLocationManager requestLocationUpdates]
🎾 Location-services: ON
05-28 18:38:57.480 INFO [TSLocationManager requestLocationUpdates]
🎾 Location-services: ON
05-28 18:38:57.481 DEBUG [TSConfig translateDesiredAccuracy] translateDesiredAccuracy (true): -1
05-28 18:38:57.484 INFO [ActivityRecognitionService b]
🎾 Start motion-activity updates
05-28 18:38:57.487 DEBUG [LocationRequestService b] SingleLocationRequest 4 isFinished? true
05-28 18:38:57.488 DEBUG [AbstractService a] ⚙️︎ finish LocationRequestService [eventCount: 0, sticky: false]
05-28 18:38:57.489 INFO [b persist]
✅ INSERT: 7ec14626-5630-45fe-832c-7cc0a8900b86
05-28 18:38:57.492 INFO [TSLocationManager removeLocationUpdates]
🔴 Location-services: OFF
05-28 18:38:57.498 INFO [TSLocationManager requestLocationUpdates]
🎾 Location-services: ON
05-28 18:38:57.499 DEBUG [TSConfig translateDesiredAccuracy] translateDesiredAccuracy (true): -1
05-28 18:38:57.536 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 1)
╠═════════════════════════════════════════════
05-28 18:38:57.542 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:38:57.566 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.844892,72.134467 acc=13 et=+1h17m9s543ms alt=35.86721315897228 vel=2.58124 bear=169.0 {Bundle[mParcelledData.dataSize=52]}], age: 202ms, time: 1622207338000
05-28 18:38:57.568 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:38:57.569 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:38:57.571 INFO [TSLocationManager onLocationResult]
🔵 Re-scaled distanceFilter: 10.0->20.0)
05-28 18:38:57.576 DEBUG [TSLocationManager onLocationResult]
ℹ️ IGNORED: same as last location
05-28 18:38:57.595 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:38:57.596 INFO [TrackingService a]
ℹ️ Location availability: true
05-28 18:38:57.598 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:38:57.623 DEBUG [AbstractService a]
🎾 BackgroundTaskService [eventCount: 1]
05-28 18:38:57.624 INFO [BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 1
05-28 18:38:57.663 DEBUG [b first]
✅ Locked 1 records
05-28 18:38:57.664 INFO [HttpService a]
🔵 HTTP POST: 7ec14626-5630-45fe-832c-7cc0a8900b86
05-28 18:38:57.730 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:38:57.733 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.844892,72.134467 acc=13 et=+1h17m9s543ms alt=35.86721315897228 vel=2.58124 bear=169.0 {Bundle[mParcelledData.dataSize=52]}], age: 370ms, time: 1622207338000
05-28 18:38:57.735 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:38:57.736 DEBUG [TSLocationManager onLocationResult]
ℹ️ IGNORED: same as last location
05-28 18:38:57.744 INFO [TSScheduleManager oneShot]
⏰ Scheduled OneShot: STOP_TIMEOUT in 300000ms (jobID: 2059034116)
05-28 18:38:57.767 INFO [TSLocationManager removeLocationUpdates]
🔴 Location-services: OFF
05-28 18:38:57.771 INFO [TSLocationManager requestLocationUpdates]
🎾 Location-services: ON
05-28 18:38:57.772 DEBUG [TSConfig translateDesiredAccuracy] translateDesiredAccuracy (true): -1
05-28 18:38:57.775 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:38:57.833 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:38:57.834 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:38:57.877 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:38:57.888 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.844892,72.134467 acc=13 et=+1h17m9s543ms alt=35.86721315897228 vel=2.58124 bear=169.0 {Bundle[mParcelledData.dataSize=52]}], age: 518ms, time: 1622207338000
05-28 18:38:57.890 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:38:57.891 INFO [TSLocationManager onLocationResult]
🔵 Re-scaled distanceFilter: 10.0->20.0)
05-28 18:38:57.895 DEBUG [TrackingService b] Received stoppedAt location
05-28 18:38:57.898 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: -26.0
05-28 18:38:57.907 DEBUG [TSLocationManager onLocationResult]
ℹ️ IGNORED: same as last location
05-28 18:38:57.908 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:38:57.926 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:38:57.927 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:38:57.970 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:38:57.971 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:38:58.047 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:38:58.049 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:38:58.426 INFO [ScheduleEvent onOneShot]
╔═════════════════════════════════════════════
║ ⏰ OneShot event fired: TERMINATE_EVENT
╠═════════════════════════════════════════════
05-28 18:38:58.429 DEBUG [TerminateEvent <init>]
ℹ️ TERMINATE_EVENT ignored (MainActivity is still active).
05-28 18:38:58.658 INFO [HttpService$i onResponse]
🔵 Response: 200
05-28 18:38:58.662 DEBUG [b destroy]
✅ DESTROY: 7ec14626-5630-45fe-832c-7cc0a8900b86
05-28 18:38:58.684 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 1
05-28 18:38:58.688 DEBUG [AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false]
05-28 18:38:58.692 DEBUG [AbstractService onDestroy]
🔴 BackgroundTaskService destroyed
05-28 18:38:59.983 INFO [TSScheduleManager oneShot]
⏰ Scheduled OneShot: TERMINATE_EVENT in 10000ms (jobID: -1708771588)
05-28 18:39:00.381 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:39:00.384 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.844824,72.134481 acc=13 et=+1h17m12s538ms alt=35.844220387326764 vel=2.5802274 bear=169.06618 {Bundle[mParcelledData.dataSize=52]}], age: 26ms, time: 1622207341000
05-28 18:39:00.398 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:39:00.398 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: -18.082838
05-28 18:39:00.399 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 96.375
05-28 18:39:00.401 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:39:00.414 INFO [b persist]
✅ INSERT: 0e98fa7c-db0f-4bef-aa7f-dd45d86bc5a4
05-28 18:39:00.436 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 1)
╠═════════════════════════════════════════════
05-28 18:39:00.469 DEBUG [AbstractService a]
🎾 BackgroundTaskService [eventCount: 1]
05-28 18:39:00.470 INFO [BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 2
05-28 18:39:00.503 DEBUG [b first]
✅ Locked 1 records
05-28 18:39:00.504 INFO [HttpService a]
🔵 HTTP POST: 0e98fa7c-db0f-4bef-aa7f-dd45d86bc5a4
05-28 18:39:00.530 DEBUG [AbstractService a]
🎾 ActivityRecognitionService [eventCount: 1]
05-28 18:39:00.532 DEBUG [ActivityRecognitionService a]
🚘 ️DetectedActivity [type=UNKNOWN, confidence=40]
05-28 18:39:00.541 DEBUG [AbstractService a] ⚙️︎ finish ActivityRecognitionService [eventCount: 0, sticky: true]
05-28 18:39:01.115 INFO [HttpService$i onResponse]
🔵 Response: 200
05-28 18:39:01.116 DEBUG [b destroy]
✅ DESTROY: 0e98fa7c-db0f-4bef-aa7f-dd45d86bc5a4
05-28 18:39:01.148 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 2
05-28 18:39:01.149 DEBUG [AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false]
05-28 18:39:01.155 DEBUG [AbstractService onDestroy]
🔴 BackgroundTaskService destroyed
05-28 18:39:05.385 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:39:05.389 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.844666,72.134584 acc=8 et=+1h17m17s545ms alt=35.847180388482286 vel=3.8909447 bear=161.26248 {Bundle[mParcelledData.dataSize=52]}], age: 23ms, time: 1622207346000
05-28 18:39:05.390 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: 6.9724584
05-28 18:39:05.390 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:39:05.391 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 12.75
05-28 18:39:05.391 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:39:05.391 DEBUG [TSLocationManager locationIsInvalid] Distance from last location: 20.422287, apparent speed: 4.0787473
05-28 18:39:05.393 DEBUG [TSLocationManager incrementOdometer] Odometer: 27.749458
05-28 18:39:05.442 INFO [b persist]
✅ INSERT: b986854a-dab5-489b-9285-99293b5c1931
05-28 18:39:05.456 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 1)
╠═════════════════════════════════════════════
05-28 18:39:05.486 DEBUG [AbstractService a]
🎾 BackgroundTaskService [eventCount: 1]
05-28 18:39:05.487 INFO [BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 3
05-28 18:39:05.505 DEBUG [b first]
✅ Locked 1 records
05-28 18:39:05.506 INFO [HttpService a]
🔵 HTTP POST: b986854a-dab5-489b-9285-99293b5c1931
05-28 18:39:06.136 INFO [HttpService$i onResponse]
🔵 Response: 200
05-28 18:39:06.141 DEBUG [b destroy]
✅ DESTROY: b986854a-dab5-489b-9285-99293b5c1931
05-28 18:39:06.172 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 3
05-28 18:39:06.174 DEBUG [AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false]
05-28 18:39:06.192 DEBUG [AbstractService onDestroy]
🔴 BackgroundTaskService destroyed
05-28 18:39:08.002 INFO [TSScheduleManager oneShot]
⏰ Oneshot TERMINATE_EVENT is already pending
05-28 18:39:10.001 INFO [ScheduleEvent onOneShot]
╔═════════════════════════════════════════════
║ ⏰ OneShot event fired: TERMINATE_EVENT
╠═════════════════════════════════════════════
05-28 18:39:10.005 DEBUG [TerminateEvent <init>]
ℹ️ TERMINATE_EVENT ignored (MainActivity is still active).
05-28 18:39:11.397 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:39:11.402 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.844469,72.134672 acc=5 et=+1h17m23s544ms alt=36.47660443038829 vel=3.8401191 bear=162.82349 {Bundle[mParcelledData.dataSize=52]}], age: 36ms, time: 1622207352000
05-28 18:39:11.403 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: 33.456036
05-28 18:39:11.404 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:39:11.405 DEBUG [TSLocationManager locationIsInvalid] Distance from last location: 23.500586, apparent speed: 3.917417
05-28 18:39:11.405 DEBUG [TrackingService b]
ℹ️ Force cancel cancel stopTimeout due to apparent movement beyond stoppedAt location
05-28 18:39:11.405 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 12.875
05-28 18:39:11.409 DEBUG [TSLocationManager incrementOdometer] Odometer: 51.250046
05-28 18:39:11.418 INFO [TSScheduleManager cancelOneShot]
⏰ Cancel OneShot: STOP_TIMEOUT
05-28 18:39:11.453 INFO [TSScheduleManager oneShot]
⏰ Scheduled OneShot: MOTION_ACTIVITY_CHECK in 65999ms (jobID: -18513055)
05-28 18:39:11.457 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:39:11.501 INFO [b persist]
✅ INSERT: 43c247ad-9e89-4065-a742-bab9ea44729e
05-28 18:39:11.523 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 1)
╠═════════════════════════════════════════════
05-28 18:39:11.560 DEBUG [AbstractService a]
🎾 BackgroundTaskService [eventCount: 1]
05-28 18:39:11.561 INFO [BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 4
05-28 18:39:11.592 DEBUG [b first]
✅ Locked 1 records
05-28 18:39:11.593 INFO [HttpService a]
🔵 HTTP POST: 43c247ad-9e89-4065-a742-bab9ea44729e
05-28 18:39:13.508 INFO [HttpService$i onResponse]
🔵 Response: 200
05-28 18:39:13.512 DEBUG [b destroy]
✅ DESTROY: 43c247ad-9e89-4065-a742-bab9ea44729e
05-28 18:39:13.536 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 4
05-28 18:39:13.538 DEBUG [AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false]
05-28 18:39:13.546 DEBUG [AbstractService onDestroy]
🔴 BackgroundTaskService destroyed
05-28 18:39:15.384 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:39:15.387 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.844287,72.134729 acc=5 et=+1h17m27s539ms alt=31.189351291492 vel=4.631864 bear=164.69293 {Bundle[mParcelledData.dataSize=52]}], age: 27ms, time: 1622207356000
05-28 18:39:15.390 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:39:15.391 DEBUG [TSLocationManager locationIsInvalid] Distance from last location: 21.057446, apparent speed: 5.2722697
05-28 18:39:15.392 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 13.0
05-28 18:39:15.393 DEBUG [TSLocationManager incrementOdometer] Odometer: 72.307495
05-28 18:39:15.405 INFO [b persist]
✅ INSERT: 643058ee-3533-4bc7-875c-72d4d0e8da5b
05-28 18:39:15.414 INFO [TSScheduleManager oneShot]
⏰ Scheduled OneShot: STOP_TIMEOUT in 300000ms (jobID: 2059034116)
05-28 18:39:15.421 INFO [TSScheduleManager cancelOneShot]
⏰ Cancel OneShot: MOTION_ACTIVITY_CHECK
05-28 18:39:15.426 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 1)
╠═════════════════════════════════════════════
05-28 18:39:15.437 INFO [TSLocationManager removeLocationUpdates]
🔴 Location-services: OFF
05-28 18:39:15.441 INFO [TSLocationManager requestLocationUpdates]
🎾 Location-services: ON
05-28 18:39:15.445 DEBUG [TSConfig translateDesiredAccuracy] translateDesiredAccuracy (true): -1
05-28 18:39:15.448 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:39:15.516 DEBUG [AbstractService a]
🎾 BackgroundTaskService [eventCount: 1]
05-28 18:39:15.517 INFO [BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 5
05-28 18:39:15.555 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:39:15.556 DEBUG [b first]
✅ Locked 1 records
05-28 18:39:15.557 INFO [HttpService a]
🔵 HTTP POST: 643058ee-3533-4bc7-875c-72d4d0e8da5b
05-28 18:39:15.567 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.844287,72.134729 acc=5 et=+1h17m27s539ms alt=31.189351291492 vel=4.631864 bear=164.69293 {Bundle[mParcelledData.dataSize=52]}], age: 203ms, time: 1622207356000
05-28 18:39:15.568 DEBUG [TrackingService b] Received stoppedAt location
05-28 18:39:15.569 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:39:15.570 INFO [TSLocationManager onLocationResult]
🔵 Re-scaled distanceFilter: 10.0->20.0)
05-28 18:39:15.570 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: -9.166
05-28 18:39:15.573 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:39:15.576 DEBUG [TSLocationManager onLocationResult]
ℹ️ IGNORED: same as last location
05-28 18:39:15.602 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:39:15.604 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:39:15.679 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:39:15.683 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.844287,72.134729 acc=5 et=+1h17m27s539ms alt=31.189351291492 vel=4.631864 bear=164.69293 {Bundle[mParcelledData.dataSize=52]}], age: 323ms, time: 1622207356000
05-28 18:39:15.684 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:39:15.684 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: -9.166
05-28 18:39:15.685 DEBUG [TSLocationManager onLocationResult]
ℹ️ IGNORED: same as last location
05-28 18:39:15.688 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:39:15.709 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:39:15.711 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:39:17.494 INFO [HttpService$i onResponse]
🔵 Response: 200
05-28 18:39:17.502 DEBUG [b destroy]
✅ DESTROY: 643058ee-3533-4bc7-875c-72d4d0e8da5b
05-28 18:39:17.544 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 5
05-28 18:39:17.546 DEBUG [AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false]
05-28 18:39:17.549 DEBUG [AbstractService onDestroy]
🔴 BackgroundTaskService destroyed
05-28 18:39:18.091 INFO [TSScheduleManager oneShot]
⏰ Scheduled OneShot: TERMINATE_EVENT in 10000ms (jobID: -1708771588)
05-28 18:39:20.398 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:39:20.402 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.844089,72.134807 acc=7 et=+1h17m32s541ms alt=31.195452854189597 vel=5.222466 bear=160.96916 {Bundle[mParcelledData.dataSize=52]}], age: 41ms, time: 1622207361000
05-28 18:39:20.403 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: 12.05863
05-28 18:39:20.404 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:39:20.405 DEBUG [TSLocationManager locationIsInvalid] Distance from last location: 23.24163, apparent speed: 4.6464677
05-28 18:39:20.405 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:39:20.406 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 10.3885
05-28 18:39:20.407 DEBUG [TSLocationManager incrementOdometer] Odometer: 95.549126
05-28 18:39:20.542 INFO [b persist]
✅ INSERT: dee34768-bbc4-480f-b0c0-ed2a61b664de
05-28 18:39:20.652 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 1)
╠═════════════════════════════════════════════
05-28 18:39:20.739 DEBUG [AbstractService a]
🎾 BackgroundTaskService [eventCount: 1]
05-28 18:39:20.740 INFO [BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 6
05-28 18:39:20.835 DEBUG [b first]
✅ Locked 1 records
05-28 18:39:20.838 INFO [HttpService a]
🔵 HTTP POST: dee34768-bbc4-480f-b0c0-ed2a61b664de
05-28 18:39:21.504 INFO [HttpService$i onResponse]
🔵 Response: 200
05-28 18:39:21.511 DEBUG [b destroy]
✅ DESTROY: dee34768-bbc4-480f-b0c0-ed2a61b664de
05-28 18:39:21.532 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 6
05-28 18:39:21.533 DEBUG [AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false]
05-28 18:39:21.547 DEBUG [AbstractService onDestroy]
🔴 BackgroundTaskService destroyed
05-28 18:39:24.409 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:39:24.419 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.843900,72.134882 acc=5 et=+1h17m36s544ms alt=33.913605972838326 vel=4.067814 bear=163.7853 {Bundle[mParcelledData.dataSize=52]}], age: 52ms, time: 1622207365000
05-28 18:39:24.420 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: 35.977055
05-28 18:39:24.420 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:39:24.422 DEBUG [TrackingService b]
ℹ️ Force cancel cancel stopTimeout due to apparent movement beyond stoppedAt location
05-28 18:39:24.423 DEBUG [TSLocationManager locationIsInvalid] Distance from last location: 22.318506, apparent speed: 5.5768385
05-28 18:39:24.424 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 7.777
05-28 18:39:24.425 DEBUG [TSLocationManager incrementOdometer] Odometer: 117.86763
05-28 18:39:24.429 INFO [TSScheduleManager cancelOneShot]
⏰ Cancel OneShot: STOP_TIMEOUT
05-28 18:39:24.455 INFO [TSScheduleManager oneShot]
⏰ Scheduled OneShot: MOTION_ACTIVITY_CHECK in 64002ms (jobID: -18513055)
05-28 18:39:24.462 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:39:24.476 INFO [b persist]
✅ INSERT: 0893a253-8db1-40db-b4f2-b03c9d663336
05-28 18:39:24.494 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 1)
╠═════════════════════════════════════════════
05-28 18:39:24.538 DEBUG [AbstractService a]
🎾 BackgroundTaskService [eventCount: 1]
05-28 18:39:24.540 INFO [BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 7
05-28 18:39:24.564 DEBUG [b first]
✅ Locked 1 records
05-28 18:39:24.565 INFO [HttpService a]
🔵 HTTP POST: 0893a253-8db1-40db-b4f2-b03c9d663336
05-28 18:39:25.175 INFO [HttpService$i onResponse]
🔵 Response: 200
05-28 18:39:25.179 DEBUG [b destroy]
✅ DESTROY: 0893a253-8db1-40db-b4f2-b03c9d663336
05-28 18:39:25.205 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 7
05-28 18:39:25.207 DEBUG [AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false]
05-28 18:39:25.218 DEBUG [AbstractService onDestroy]
🔴 BackgroundTaskService destroyed
05-28 18:39:28.116 INFO [ScheduleEvent onOneShot]
╔═════════════════════════════════════════════
║ ⏰ OneShot event fired: TERMINATE_EVENT
╠═════════════════════════════════════════════
05-28 18:39:28.121 DEBUG [TerminateEvent <init>]
ℹ️ TERMINATE_EVENT ignored (MainActivity is still active).
05-28 18:39:29.407 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:39:29.414 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.843717,72.134950 acc=4 et=+1h17m41s544ms alt=33.869262043276855 vel=4.269296 bear=160.03024 {Bundle[mParcelledData.dataSize=52]}], age: 49ms, time: 1622207370000
05-28 18:39:29.417 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:39:29.419 DEBUG [TSLocationManager locationIsInvalid] Distance from last location: 21.424063, apparent speed: 4.2848125
05-28 18:39:29.429 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 7.1885
05-28 18:39:29.430 DEBUG [TSLocationManager incrementOdometer] Odometer: 139.29169
05-28 18:39:29.450 INFO [TSScheduleManager oneShot]
⏰ Scheduled OneShot: STOP_TIMEOUT in 300000ms (jobID: 2059034116)
05-28 18:39:29.454 INFO [b persist]
✅ INSERT: 8094178f-a8a0-47d2-a38a-6df39ac7d4f3
05-28 18:39:29.459 INFO [TSScheduleManager cancelOneShot]
⏰ Cancel OneShot: MOTION_ACTIVITY_CHECK
05-28 18:39:29.482 INFO [TSLocationManager removeLocationUpdates]
🔴 Location-services: OFF
05-28 18:39:29.491 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 1)
╠═════════════════════════════════════════════
05-28 18:39:29.491 INFO [TSLocationManager requestLocationUpdates]
🎾 Location-services: ON
05-28 18:39:29.493 DEBUG [TSConfig translateDesiredAccuracy] translateDesiredAccuracy (true): -1
05-28 18:39:29.502 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:39:29.569 DEBUG [AbstractService a]
🎾 BackgroundTaskService [eventCount: 1]
05-28 18:39:29.570 INFO [BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 8
05-28 18:39:29.609 DEBUG [b first]
✅ Locked 1 records
05-28 18:39:29.610 INFO [HttpService a]
🔵 HTTP POST: 8094178f-a8a0-47d2-a38a-6df39ac7d4f3
05-28 18:39:29.652 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:39:29.655 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.843717,72.134950 acc=4 et=+1h17m41s544ms alt=33.869262043276855 vel=4.269296 bear=160.03024 {Bundle[mParcelledData.dataSize=52]}], age: 291ms, time: 1622207370000
05-28 18:39:29.656 DEBUG [TrackingService b] Received stoppedAt location
05-28 18:39:29.657 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:39:29.658 INFO [TSLocationManager onLocationResult]
🔵 Re-scaled distanceFilter: 10.0->20.0)
05-28 18:39:29.658 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: -8.0
05-28 18:39:29.660 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:39:29.662 DEBUG [TSLocationManager onLocationResult]
ℹ️ IGNORED: same as last location
05-28 18:39:29.715 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:39:29.727 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:39:29.805 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:39:29.810 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.843717,72.134950 acc=4 et=+1h17m41s544ms alt=33.869262043276855 vel=4.269296 bear=160.03024 {Bundle[mParcelledData.dataSize=52]}], age: 444ms, time: 1622207370000
05-28 18:39:29.811 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: -8.0
05-28 18:39:29.811 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:39:29.812 DEBUG [TSLocationManager onLocationResult]
ℹ️ IGNORED: same as last location
05-28 18:39:29.812 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:39:29.833 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:39:29.836 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:39:30.216 INFO [HttpService$i onResponse]
🔵 Response: 200
05-28 18:39:30.219 DEBUG [b destroy]
✅ DESTROY: 8094178f-a8a0-47d2-a38a-6df39ac7d4f3
05-28 18:39:30.238 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 8
05-28 18:39:30.241 DEBUG [AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false]
05-28 18:39:30.263 DEBUG [AbstractService onDestroy]
🔴 BackgroundTaskService destroyed
05-28 18:39:34.394 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:39:34.404 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.843542,72.134999 acc=8 et=+1h17m46s540ms alt=33.85957477314191 vel=4.223267 bear=164.0962 {Bundle[mParcelledData.dataSize=52]}], age: 37ms, time: 1622207375000
05-28 18:39:34.407 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: 8.2142725
05-28 18:39:34.408 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:39:34.408 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:39:34.409 DEBUG [TSLocationManager locationIsInvalid] Distance from last location: 20.014273, apparent speed: 4.006059
05-28 18:39:34.410 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 7.777
05-28 18:39:34.411 DEBUG [TSLocationManager incrementOdometer] Odometer: 159.30595
05-28 18:39:34.457 INFO [b persist]
✅ INSERT: d1d81008-19d6-4bb0-b070-12b9ecb9c999
05-28 18:39:34.475 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 1)
╠═════════════════════════════════════════════
05-28 18:39:34.503 DEBUG [AbstractService a]
🎾 BackgroundTaskService [eventCount: 1]
05-28 18:39:34.504 INFO [BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 9
05-28 18:39:34.526 DEBUG [b first]
✅ Locked 1 records
05-28 18:39:34.528 INFO [HttpService a]
🔵 HTTP POST: d1d81008-19d6-4bb0-b070-12b9ecb9c999
05-28 18:39:35.169 INFO [HttpService$i onResponse]
🔵 Response: 200
05-28 18:39:35.171 DEBUG [b destroy]
✅ DESTROY: d1d81008-19d6-4bb0-b070-12b9ecb9c999
05-28 18:39:35.191 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 9
05-28 18:39:35.193 DEBUG [AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false]
05-28 18:39:35.196 DEBUG [AbstractService onDestroy]
🔴 BackgroundTaskService destroyed
05-28 18:39:41.405 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:39:41.415 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.843332,72.135011 acc=7 et=+1h17m53s541ms alt=36.000179848090916 vel=3.691865 bear=172.6984 {Bundle[mParcelledData.dataSize=52]}], age: 51ms, time: 1622207382000
05-28 18:39:41.417 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: 32.432922
05-28 18:39:41.417 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:39:41.419 DEBUG [TSLocationManager locationIsInvalid] Distance from last location: 23.281422, apparent speed: 3.3254423
05-28 18:39:41.420 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 6.647
05-28 18:39:41.422 DEBUG [TSLocationManager incrementOdometer] Odometer: 182.58737
05-28 18:39:41.422 DEBUG [TrackingService b]
ℹ️ Force cancel cancel stopTimeout due to apparent movement beyond stoppedAt location
05-28 18:39:41.431 INFO [TSScheduleManager cancelOneShot]
⏰ Cancel OneShot: STOP_TIMEOUT
05-28 18:39:41.457 INFO [TSScheduleManager oneShot]
⏰ Scheduled OneShot: MOTION_ACTIVITY_CHECK in 67001ms (jobID: -18513055)
05-28 18:39:41.461 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:39:41.487 INFO [b persist]
✅ INSERT: a3bd365c-91ba-46a6-a0d2-53f087041fb8
05-28 18:39:41.501 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 1)
╠═════════════════════════════════════════════
05-28 18:39:41.534 DEBUG [AbstractService a]
🎾 BackgroundTaskService [eventCount: 1]
05-28 18:39:41.535 INFO [BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 10
05-28 18:39:41.553 DEBUG [b first]
✅ Locked 1 records
05-28 18:39:41.554 INFO [HttpService a]
🔵 HTTP POST: a3bd365c-91ba-46a6-a0d2-53f087041fb8
05-28 18:39:42.309 INFO [HttpService$i onResponse]
🔵 Response: 200
05-28 18:39:42.316 DEBUG [b destroy]
✅ DESTROY: a3bd365c-91ba-46a6-a0d2-53f087041fb8
05-28 18:39:42.346 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 10
05-28 18:39:42.350 DEBUG [AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false]
05-28 18:39:42.356 DEBUG [AbstractService onDestroy]
🔴 BackgroundTaskService destroyed
05-28 18:39:47.401 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:39:47.404 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.843138,72.135055 acc=13 et=+1h17m59s542ms alt=36.67304841589185 vel=3.4705865 bear=187.50117 {Bundle[mParcelledData.dataSize=52]}], age: 40ms, time: 1622207388000
05-28 18:39:47.405 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:39:47.406 DEBUG [TSLocationManager locationIsInvalid] Distance from last location: 21.9518, apparent speed: 3.6580236
05-28 18:39:47.407 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 6.647
05-28 18:39:47.408 DEBUG [TSLocationManager incrementOdometer] Odometer: 204.53917
05-28 18:39:47.428 INFO [b persist]
✅ INSERT: 2896647b-a8e1-4089-a301-fdee8db3c88f
05-28 18:39:47.438 INFO [TSScheduleManager oneShot]
⏰ Scheduled OneShot: STOP_TIMEOUT in 300000ms (jobID: 2059034116)
05-28 18:39:47.446 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 1)
╠═════════════════════════════════════════════
05-28 18:39:47.446 INFO [TSScheduleManager cancelOneShot]
⏰ Cancel OneShot: MOTION_ACTIVITY_CHECK
05-28 18:39:47.465 INFO [TSLocationManager removeLocationUpdates]
🔴 Location-services: OFF
05-28 18:39:47.470 INFO [TSLocationManager requestLocationUpdates]
🎾 Location-services: ON
05-28 18:39:47.472 DEBUG [TSConfig translateDesiredAccuracy] translateDesiredAccuracy (true): -1
05-28 18:39:47.475 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:39:47.547 DEBUG [AbstractService a]
🎾 BackgroundTaskService [eventCount: 1]
05-28 18:39:47.548 INFO [BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 11
05-28 18:39:47.574 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:39:47.578 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.843138,72.135055 acc=13 et=+1h17m59s542ms alt=36.67304841589185 vel=3.4705865 bear=187.50117 {Bundle[mParcelledData.dataSize=52]}], age: 215ms, time: 1622207388000
05-28 18:39:47.579 DEBUG [TrackingService b] Received stoppedAt location
05-28 18:39:47.581 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: -26.6
05-28 18:39:47.581 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:39:47.582 INFO [TSLocationManager onLocationResult]
🔵 Re-scaled distanceFilter: 10.0->20.0)
05-28 18:39:47.583 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:39:47.592 DEBUG [TSLocationManager onLocationResult]
ℹ️ IGNORED: same as last location
05-28 18:39:47.634 DEBUG [b first]
✅ Locked 1 records
05-28 18:39:47.635 INFO [HttpService a]
🔵 HTTP POST: 2896647b-a8e1-4089-a301-fdee8db3c88f
05-28 18:39:47.636 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:39:47.638 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:39:47.750 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:39:47.754 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.843138,72.135055 acc=13 et=+1h17m59s542ms alt=36.67304841589185 vel=3.4705865 bear=187.50117 {Bundle[mParcelledData.dataSize=52]}], age: 390ms, time: 1622207388000
05-28 18:39:47.755 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: -26.6
05-28 18:39:47.756 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:39:47.758 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:39:47.760 DEBUG [TSLocationManager onLocationResult]
ℹ️ IGNORED: same as last location
05-28 18:39:47.786 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:39:47.787 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:39:48.259 INFO [HttpService$i onResponse]
🔵 Response: 200
05-28 18:39:48.263 DEBUG [b destroy]
✅ DESTROY: 2896647b-a8e1-4089-a301-fdee8db3c88f
05-28 18:39:48.308 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 11
05-28 18:39:48.315 DEBUG [AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false]
05-28 18:39:48.321 DEBUG [AbstractService onDestroy]
🔴 BackgroundTaskService destroyed
05-28 18:39:51.392 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:39:51.397 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.843099,72.134830 acc=27 et=+1h18m3s543ms alt=36.98329436257477 vel=3.7300134 bear=239.0 {Bundle[mParcelledData.dataSize=52]}], age: 33ms, time: 1622207392000
05-28 18:39:51.400 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: -16.952667
05-28 18:39:51.402 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:39:51.402 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:39:51.403 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 6.647
05-28 18:39:51.405 DEBUG [TSLocationManager incrementOdometer] Odometer: 227.8865
05-28 18:39:51.463 INFO [b persist]
✅ INSERT: 9bd39544-cc4d-47c5-8c7e-e6ba1efb59ca
05-28 18:39:51.479 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 1)
╠═════════════════════════════════════════════
05-28 18:39:51.517 DEBUG [AbstractService a]
🎾 BackgroundTaskService [eventCount: 1]
05-28 18:39:51.518 INFO [BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 12
05-28 18:39:51.541 DEBUG [b first]
✅ Locked 1 records
05-28 18:39:51.542 INFO [HttpService a]
🔵 HTTP POST: 9bd39544-cc4d-47c5-8c7e-e6ba1efb59ca
05-28 18:39:52.125 INFO [HttpService$i onResponse]
🔵 Response: 200
05-28 18:39:52.130 DEBUG [b destroy]
✅ DESTROY: 9bd39544-cc4d-47c5-8c7e-e6ba1efb59ca
05-28 18:39:52.162 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 12
05-28 18:39:52.164 DEBUG [AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false]
05-28 18:39:52.167 DEBUG [AbstractService onDestroy]
🔴 BackgroundTaskService destroyed
05-28 18:39:56.395 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:39:56.404 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.842972,72.134602 acc=15 et=+1h18m8s545ms alt=37.196690146699076 vel=4.9602523 bear=235.0 {Bundle[mParcelledData.dataSize=52]}], age: 37ms, time: 1622207397000
05-28 18:39:56.407 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: 21.413372
05-28 18:39:56.409 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:39:56.411 DEBUG [TSLocationManager locationIsInvalid] Distance from last location: 27.168959, apparent speed: 5.431619
05-28 18:39:56.412 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 6.647
05-28 18:39:56.414 DEBUG [TSLocationManager incrementOdometer] Odometer: 255.05547
05-28 18:39:56.424 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:39:56.481 INFO [b persist]
✅ INSERT: 7d37a4e6-fd6d-4186-80c9-39f21769930a
05-28 18:39:56.496 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 1)
╠═════════════════════════════════════════════
05-28 18:39:56.524 DEBUG [AbstractService a]
🎾 BackgroundTaskService [eventCount: 1]
05-28 18:39:56.525 INFO [BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 13
05-28 18:39:56.548 DEBUG [b first]
✅ Locked 1 records
05-28 18:39:56.549 INFO [HttpService a]
🔵 HTTP POST: 7d37a4e6-fd6d-4186-80c9-39f21769930a
05-28 18:39:57.170 INFO [HttpService$i onResponse]
🔵 Response: 200
05-28 18:39:57.179 DEBUG [b destroy]
✅ DESTROY: 7d37a4e6-fd6d-4186-80c9-39f21769930a
05-28 18:39:57.207 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 13
05-28 18:39:57.208 DEBUG [AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false]
05-28 18:39:57.210 DEBUG [AbstractService onDestroy]
🔴 BackgroundTaskService destroyed
05-28 18:40:00.399 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:40:00.404 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.842842,72.134425 acc=14 et=+1h18m12s547ms alt=37.146306882773686 vel=4.8700957 bear=238.29443 {Bundle[mParcelledData.dataSize=52]}], age: 36ms, time: 1622207401000
05-28 18:40:00.405 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: 44.864418
05-28 18:40:00.406 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:40:00.406 DEBUG [TrackingService b]
ℹ️ Force cancel cancel stopTimeout due to apparent movement beyond stoppedAt location
05-28 18:40:00.407 DEBUG [TSLocationManager locationIsInvalid] Distance from last location: 23.038406, apparent speed: 5.7567234
05-28 18:40:00.408 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 6.647
05-28 18:40:00.410 DEBUG [TSLocationManager incrementOdometer] Odometer: 278.09387
05-28 18:40:00.413 INFO [TSScheduleManager cancelOneShot]
⏰ Cancel OneShot: STOP_TIMEOUT
05-28 18:40:00.440 INFO [TSScheduleManager oneShot]
⏰ Scheduled OneShot: MOTION_ACTIVITY_CHECK in 64002ms (jobID: -18513055)
05-28 18:40:00.444 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:40:00.488 INFO [b persist]
✅ INSERT: a3476128-2d03-45cc-b704-ca048d3a54c1
05-28 18:40:00.570 INFO [TSScheduleManager oneShot]
⏰ Scheduled OneShot: TERMINATE_EVENT in 10000ms (jobID: -1708771588)
05-28 18:40:00.593 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 1)
╠═════════════════════════════════════════════
05-28 18:40:00.643 DEBUG [AbstractService a]
🎾 BackgroundTaskService [eventCount: 1]
05-28 18:40:00.644 INFO [BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 14
05-28 18:40:00.826 DEBUG [b first]
✅ Locked 1 records
05-28 18:40:00.827 INFO [HttpService a]
🔵 HTTP POST: a3476128-2d03-45cc-b704-ca048d3a54c1
05-28 18:40:03.163 INFO [HttpService$i onResponse]
🔵 Response: 200
05-28 18:40:03.165 DEBUG [b destroy]
✅ DESTROY: a3476128-2d03-45cc-b704-ca048d3a54c1
05-28 18:40:03.180 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 14
05-28 18:40:03.181 DEBUG [AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false]
05-28 18:40:03.187 DEBUG [AbstractService onDestroy]
🔴 BackgroundTaskService destroyed
05-28 18:40:05.436 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:40:05.441 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.842708,72.134253 acc=11 et=+1h18m17s545ms alt=37.21646519667934 vel=5.0404696 bear=230.03534 {Bundle[mParcelledData.dataSize=52]}], age: 75ms, time: 1622207406000
05-28 18:40:05.443 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:40:05.444 DEBUG [TSLocationManager locationIsInvalid] Distance from last location: 22.93382, apparent speed: 4.5885997
05-28 18:40:05.445 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 7.8
05-28 18:40:05.447 DEBUG [TSLocationManager incrementOdometer] Odometer: 301.02768
05-28 18:40:05.467 INFO [b persist]
✅ INSERT: 5afe8a46-f356-4f5b-8230-7c7337ca3356
05-28 18:40:05.486 INFO [TSScheduleManager oneShot]
⏰ Scheduled OneShot: STOP_TIMEOUT in 300000ms (jobID: 2059034116)
05-28 18:40:05.499 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 1)
╠═════════════════════════════════════════════
05-28 18:40:05.504 INFO [TSScheduleManager cancelOneShot]
⏰ Cancel OneShot: MOTION_ACTIVITY_CHECK
05-28 18:40:05.528 INFO [TSLocationManager removeLocationUpdates]
🔴 Location-services: OFF
05-28 18:40:05.533 INFO [TSLocationManager requestLocationUpdates]
🎾 Location-services: ON
05-28 18:40:05.534 DEBUG [TSConfig translateDesiredAccuracy] translateDesiredAccuracy (true): -1
05-28 18:40:05.536 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:40:05.580 DEBUG [AbstractService a]
🎾 BackgroundTaskService [eventCount: 1]
05-28 18:40:05.581 INFO [BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 15
05-28 18:40:05.616 DEBUG [b first]
✅ Locked 1 records
05-28 18:40:05.617 INFO [HttpService a]
🔵 HTTP POST: 5afe8a46-f356-4f5b-8230-7c7337ca3356
05-28 18:40:05.637 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:40:05.641 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.842708,72.134253 acc=11 et=+1h18m17s545ms alt=37.21646519667934 vel=5.0404696 bear=230.03534 {Bundle[mParcelledData.dataSize=52]}], age: 275ms, time: 1622207406000
05-28 18:40:05.642 DEBUG [TrackingService b] Received stoppedAt location
05-28 18:40:05.643 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:40:05.643 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: -21.142
05-28 18:40:05.644 INFO [TSLocationManager onLocationResult]
🔵 Re-scaled distanceFilter: 10.0->20.0)
05-28 18:40:05.645 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:40:05.647 DEBUG [TSLocationManager onLocationResult]
ℹ️ IGNORED: same as last location
05-28 18:40:05.683 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:40:05.684 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:40:05.738 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:40:05.742 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.842708,72.134253 acc=11 et=+1h18m17s545ms alt=37.21646519667934 vel=5.0404696 bear=230.03534 {Bundle[mParcelledData.dataSize=52]}], age: 375ms, time: 1622207406000
05-28 18:40:05.744 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: -21.142
05-28 18:40:05.746 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:40:05.759 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:40:05.762 DEBUG [TSLocationManager onLocationResult]
ℹ️ IGNORED: same as last location
05-28 18:40:05.766 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:40:05.769 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:40:06.225 INFO [HttpService$i onResponse]
🔵 Response: 200
05-28 18:40:06.227 DEBUG [b destroy]
✅ DESTROY: 5afe8a46-f356-4f5b-8230-7c7337ca3356
05-28 18:40:06.278 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 15
05-28 18:40:06.279 DEBUG [AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false]
05-28 18:40:06.285 DEBUG [AbstractService onDestroy]
🔴 BackgroundTaskService destroyed
05-28 18:40:08.400 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:40:08.414 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.842713,72.134023 acc=11 et=+1h18m20s544ms alt=35.61605040751305 vel=4.949628 bear=262.38348 {Bundle[mParcelledData.dataSize=52]}], age: 49ms, time: 1622207409000
05-28 18:40:08.415 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: 1.5391397
05-28 18:40:08.416 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:40:08.417 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:40:08.417 DEBUG [TSLocationManager locationIsInvalid] Distance from last location: 23.39514, apparent speed: 7.803582
05-28 18:40:08.417 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 10.571
05-28 18:40:08.423 DEBUG [TSLocationManager incrementOdometer] Odometer: 324.42282
05-28 18:40:08.443 INFO [b persist]
✅ INSERT: dc24bc3f-c15e-41d1-91e4-124d2dcbd4a4
05-28 18:40:08.468 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 1)
╠═════════════════════════════════════════════
05-28 18:40:08.523 DEBUG [AbstractService a]
🎾 BackgroundTaskService [eventCount: 1]
05-28 18:40:08.524 INFO [BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 16
05-28 18:40:08.588 DEBUG [b first]
✅ Locked 1 records
05-28 18:40:08.593 INFO [HttpService a]
🔵 HTTP POST: dc24bc3f-c15e-41d1-91e4-124d2dcbd4a4
05-28 18:40:09.241 INFO [HttpService$i onResponse]
🔵 Response: 200
05-28 18:40:09.252 DEBUG [b destroy]
✅ DESTROY: dc24bc3f-c15e-41d1-91e4-124d2dcbd4a4
05-28 18:40:09.272 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 16
05-28 18:40:09.274 DEBUG [AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false]
05-28 18:40:09.286 DEBUG [AbstractService onDestroy]
🔴 BackgroundTaskService destroyed
05-28 18:40:10.599 INFO [ScheduleEvent onOneShot]
╔═════════════════════════════════════════════
║ ⏰ OneShot event fired: TERMINATE_EVENT
╠═════════════════════════════════════════════
05-28 18:40:10.607 DEBUG [TerminateEvent <init>]
ℹ️ TERMINATE_EVENT ignored (MainActivity is still active).
05-28 18:40:11.397 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:40:11.406 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.842682,72.133796 acc=18 et=+1h18m23s542ms alt=35.58418535794181 vel=6.6265483 bear=251.75194 {Bundle[mParcelledData.dataSize=52]}], age: 40ms, time: 1622207412000
05-28 18:40:11.410 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: 17.791256
05-28 18:40:11.412 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:40:11.414 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:40:11.414 DEBUG [TSLocationManager locationIsInvalid] Distance from last location: 23.40979, apparent speed: 7.808469
05-28 18:40:11.418 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 11.285
05-28 18:40:11.428 DEBUG [TSLocationManager incrementOdometer] Odometer: 347.8326
05-28 18:40:11.487 INFO [b persist]
✅ INSERT: f13d2244-f7de-4ec4-914f-8d128276d3ff
05-28 18:40:11.501 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 1)
╠═════════════════════════════════════════════
05-28 18:40:11.548 DEBUG [AbstractService a]
🎾 BackgroundTaskService [eventCount: 1]
05-28 18:40:11.549 INFO [BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 17
05-28 18:40:11.595 DEBUG [b first]
✅ Locked 1 records
05-28 18:40:11.597 INFO [HttpService a]
🔵 HTTP POST: f13d2244-f7de-4ec4-914f-8d128276d3ff
05-28 18:40:12.167 INFO [HttpService$i onResponse]
🔵 Response: 200
05-28 18:40:12.170 DEBUG [b destroy]
✅ DESTROY: f13d2244-f7de-4ec4-914f-8d128276d3ff
05-28 18:40:12.203 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 17
05-28 18:40:12.205 DEBUG [AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false]
05-28 18:40:12.211 DEBUG [AbstractService onDestroy]
🔴 BackgroundTaskService destroyed
05-28 18:40:15.408 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:40:15.417 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.842493,72.133684 acc=22 et=+1h18m27s538ms alt=35.477210993992095 vel=5.4606643 bear=227.98851 {Bundle[mParcelledData.dataSize=52]}], age: 56ms, time: 1622207416000
05-28 18:40:15.419 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: 30.627035
05-28 18:40:15.420 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:40:15.421 DEBUG [TSLocationManager locationIsInvalid] Distance from last location: 23.928167, apparent speed: 5.9895287
05-28 18:40:15.423 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 13.3
05-28 18:40:15.426 DEBUG [TSLocationManager incrementOdometer] Odometer: 371.76077
05-28 18:40:15.428 DEBUG [TrackingService b]
ℹ️ Force cancel cancel stopTimeout due to apparent movement beyond stoppedAt location
05-28 18:40:15.434 INFO [TSScheduleManager cancelOneShot]
⏰ Cancel OneShot: STOP_TIMEOUT
05-28 18:40:15.458 INFO [TSScheduleManager oneShot]
⏰ Scheduled OneShot: MOTION_ACTIVITY_CHECK in 63995ms (jobID: -18513055)
05-28 18:40:15.469 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:40:15.482 INFO [b persist]
✅ INSERT: 54525424-860e-430d-863a-4cf4cea5d84d
05-28 18:40:15.494 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 1)
╠═════════════════════════════════════════════
05-28 18:40:15.527 DEBUG [AbstractService a]
🎾 BackgroundTaskService [eventCount: 1]
05-28 18:40:15.528 INFO [BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 18
05-28 18:40:15.546 DEBUG [b first]
✅ Locked 1 records
05-28 18:40:15.547 INFO [HttpService a]
🔵 HTTP POST: 54525424-860e-430d-863a-4cf4cea5d84d
05-28 18:40:16.235 INFO [HttpService$i onResponse]
🔵 Response: 200
05-28 18:40:16.237 DEBUG [b destroy]
✅ DESTROY: 54525424-860e-430d-863a-4cf4cea5d84d
05-28 18:40:16.266 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 18
05-28 18:40:16.268 DEBUG [AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false]
05-28 18:40:16.276 DEBUG [AbstractService onDestroy]
🔴 BackgroundTaskService destroyed
05-28 18:40:19.418 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:40:19.432 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.842364,72.133515 acc=21 et=+1h18m31s537ms alt=35.4367303077886 vel=4.885412 bear=226.94835 {Bundle[mParcelledData.dataSize=52]}], age: 71ms, time: 1622207420000
05-28 18:40:19.435 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:40:19.437 DEBUG [TSLocationManager locationIsInvalid] Distance from last location: 22.315016, apparent speed: 5.580149
05-28 18:40:19.439 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 13.909
05-28 18:40:19.442 DEBUG [TSLocationManager incrementOdometer] Odometer: 394.07578
05-28 18:40:19.468 INFO [b persist]
✅ INSERT: f64df9e4-e598-4379-970f-d95483bd9224
05-28 18:40:19.487 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 1)
╠═════════════════════════════════════════════
05-28 18:40:19.491 INFO [TSScheduleManager oneShot]
⏰ Scheduled OneShot: STOP_TIMEOUT in 300000ms (jobID: 2059034116)
05-28 18:40:19.501 INFO [TSScheduleManager cancelOneShot]
⏰ Cancel OneShot: MOTION_ACTIVITY_CHECK
05-28 18:40:19.518 INFO [TSLocationManager removeLocationUpdates]
🔴 Location-services: OFF
05-28 18:40:19.521 INFO [TSLocationManager requestLocationUpdates]
🎾 Location-services: ON
05-28 18:40:19.522 DEBUG [TSConfig translateDesiredAccuracy] translateDesiredAccuracy (true): -1
05-28 18:40:19.524 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:40:19.578 DEBUG [AbstractService a]
🎾 BackgroundTaskService [eventCount: 1]
05-28 18:40:19.579 INFO [BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 19
05-28 18:40:19.614 DEBUG [b first]
✅ Locked 1 records
05-28 18:40:19.615 INFO [HttpService a]
🔵 HTTP POST: f64df9e4-e598-4379-970f-d95483bd9224
05-28 18:40:19.624 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:40:19.628 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.842364,72.133515 acc=21 et=+1h18m31s537ms alt=35.4367303077886 vel=4.885412 bear=226.94835 {Bundle[mParcelledData.dataSize=52]}], age: 270ms, time: 1622207420000
05-28 18:40:19.629 DEBUG [TrackingService b] Received stoppedAt location
05-28 18:40:19.630 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:40:19.630 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: -41.818
05-28 18:40:19.631 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:40:19.632 INFO [TSLocationManager onLocationResult]
🔵 Re-scaled distanceFilter: 10.0->20.0)
05-28 18:40:19.636 DEBUG [TSLocationManager onLocationResult]
ℹ️ IGNORED: same as last location
05-28 18:40:19.646 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:40:19.648 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:40:19.731 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:40:19.735 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.842364,72.133515 acc=21 et=+1h18m31s537ms alt=35.4367303077886 vel=4.885412 bear=226.94835 {Bundle[mParcelledData.dataSize=52]}], age: 376ms, time: 1622207420000
05-28 18:40:19.739 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: -41.818
05-28 18:40:19.740 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:40:19.740 DEBUG [TSLocationManager onLocationResult]
ℹ️ IGNORED: same as last location
05-28 18:40:19.741 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:40:19.763 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:40:19.765 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:40:20.301 INFO [HttpService$i onResponse]
🔵 Response: 200
05-28 18:40:20.310 DEBUG [b destroy]
✅ DESTROY: f64df9e4-e598-4379-970f-d95483bd9224
05-28 18:40:20.341 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 19
05-28 18:40:20.346 DEBUG [AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false]
05-28 18:40:20.371 DEBUG [AbstractService onDestroy]
🔴 BackgroundTaskService destroyed
05-28 18:40:24.388 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:40:24.392 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.842181,72.133546 acc=22 et=+1h18m36s541ms alt=33.52635832282862 vel=3.3837836 bear=211.60724 {Bundle[mParcelledData.dataSize=52]}], age: 29ms, time: 1622207425000
05-28 18:40:24.393 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: -22.356958
05-28 18:40:24.393 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:40:24.394 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 15.0
05-28 18:40:24.394 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:40:24.442 INFO [b persist]
✅ INSERT: caa9a045-0f37-4622-9505-1c27ddb2e87f
05-28 18:40:24.469 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 1)
╠═════════════════════════════════════════════
05-28 18:40:24.502 DEBUG [AbstractService a]
🎾 BackgroundTaskService [eventCount: 1]
05-28 18:40:24.503 INFO [BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 20
05-28 18:40:24.533 DEBUG [b first]
✅ Locked 1 records
05-28 18:40:24.534 INFO [HttpService a]
🔵 HTTP POST: caa9a045-0f37-4622-9505-1c27ddb2e87f
05-28 18:40:25.169 INFO [HttpService$i onResponse]
🔵 Response: 200
05-28 18:40:25.172 DEBUG [b destroy]
✅ DESTROY: caa9a045-0f37-4622-9505-1c27ddb2e87f
05-28 18:40:25.200 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 20
05-28 18:40:25.201 DEBUG [AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false]
05-28 18:40:25.212 DEBUG [AbstractService onDestroy]
🔴 BackgroundTaskService destroyed
05-28 18:40:29.397 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:40:29.405 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.842088,72.133361 acc=17 et=+1h18m41s545ms alt=32.60460315566127 vel=3.3525274 bear=237.70541 {Bundle[mParcelledData.dataSize=52]}], age: 36ms, time: 1622207430000
05-28 18:40:29.409 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: -3.6128635
05-28 18:40:29.410 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:40:29.411 DEBUG [TSLocationManager locationIsInvalid] Distance from last location: 21.472494, apparent speed: 4.2919235
05-28 18:40:29.412 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:40:29.412 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 17.1
05-28 18:40:29.418 DEBUG [TSLocationManager incrementOdometer] Odometer: 428.47192
05-28 18:40:29.473 INFO [b persist]
✅ INSERT: ff02b5aa-ec0b-47fc-bfad-314d9d50be93
05-28 18:40:29.492 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 1)
╠═════════════════════════════════════════════
05-28 18:40:29.530 DEBUG [AbstractService a]
🎾 BackgroundTaskService [eventCount: 1]
05-28 18:40:29.531 INFO [BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 21
05-28 18:40:29.556 DEBUG [b first]
✅ Locked 1 records
05-28 18:40:29.557 INFO [HttpService a]
🔵 HTTP POST: ff02b5aa-ec0b-47fc-bfad-314d9d50be93
05-28 18:40:30.248 INFO [HttpService$i onResponse]
🔵 Response: 200
05-28 18:40:30.250 DEBUG [b destroy]
✅ DESTROY: ff02b5aa-ec0b-47fc-bfad-314d9d50be93
05-28 18:40:30.409 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 21
05-28 18:40:30.411 DEBUG [AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false]
05-28 18:40:30.419 DEBUG [AbstractService onDestroy]
🔴 BackgroundTaskService destroyed
05-28 18:40:36.393 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:40:36.398 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.842361,72.133257 acc=22 et=+1h18m48s538ms alt=31.940686276727675 vel=4.9267163 bear=337.13934 {Bundle[mParcelledData.dataSize=52]}], age: 39ms, time: 1622207437000
05-28 18:40:36.399 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: -16.975996
05-28 18:40:36.400 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:40:36.400 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:40:36.401 DEBUG [TSLocationManager locationIsInvalid] Distance from last location: 32.097607, apparent speed: 4.5899625
05-28 18:40:36.402 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 18.285
05-28 18:40:36.403 DEBUG [TSLocationManager incrementOdometer] Odometer: 460.56952
05-28 18:40:36.447 INFO [b persist]
✅ INSERT: 6b60f0c1-006c-46f0-8420-8bedd400b54f
05-28 18:40:36.593 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 1)
╠═════════════════════════════════════════════
05-28 18:40:36.629 DEBUG [AbstractService a]
🎾 BackgroundTaskService [eventCount: 1]
05-28 18:40:36.629 INFO [BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 22
05-28 18:40:36.739 DEBUG [b first]
✅ Locked 1 records
05-28 18:40:36.741 INFO [HttpService a]
🔵 HTTP POST: 6b60f0c1-006c-46f0-8420-8bedd400b54f
05-28 18:40:37.355 INFO [HttpService$i onResponse]
🔵 Response: 200
05-28 18:40:37.361 DEBUG [b destroy]
✅ DESTROY: 6b60f0c1-006c-46f0-8420-8bedd400b54f
05-28 18:40:37.479 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 22
05-28 18:40:37.480 DEBUG [AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false]
05-28 18:40:37.488 DEBUG [AbstractService onDestroy]
🔴 BackgroundTaskService destroyed
05-28 18:40:40.404 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:40:40.408 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.842570,72.133150 acc=14 et=+1h18m52s541ms alt=32.03878915247499 vel=5.6895876 bear=332.1793 {Bundle[mParcelledData.dataSize=52]}], age: 47ms, time: 1622207441000
05-28 18:40:40.409 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: 9.10848
05-28 18:40:40.410 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:40:40.410 DEBUG [TSLocationManager locationIsInvalid] Distance from last location: 25.59924, apparent speed: 6.3966117
05-28 18:40:40.411 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:40:40.411 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 17.1
05-28 18:40:40.413 DEBUG [TSLocationManager incrementOdometer] Odometer: 486.16876
05-28 18:40:40.463 INFO [b persist]
✅ INSERT: e5b6cf72-d6a7-4697-8a52-60427fd2a645
05-28 18:40:40.535 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 1)
╠═════════════════════════════════════════════
05-28 18:40:40.571 DEBUG [AbstractService a]
🎾 BackgroundTaskService [eventCount: 1]
05-28 18:40:40.572 INFO [BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 23
05-28 18:40:40.705 DEBUG [b first]
✅ Locked 1 records
05-28 18:40:40.708 INFO [HttpService a]
🔵 HTTP POST: e5b6cf72-d6a7-4697-8a52-60427fd2a645
05-28 18:40:41.862 INFO [HttpService$i onResponse]
🔵 Response: 200
05-28 18:40:41.866 DEBUG [b destroy]
✅ DESTROY: e5b6cf72-d6a7-4697-8a52-60427fd2a645
05-28 18:40:41.900 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 23
05-28 18:40:41.902 DEBUG [AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false]
05-28 18:40:41.914 DEBUG [AbstractService onDestroy]
🔴 BackgroundTaskService destroyed
05-28 18:40:44.392 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:40:44.402 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.842772,72.133009 acc=12 et=+1h18m56s541ms alt=32.029022490859084 vel=6.303398 bear=322.13617 {Bundle[mParcelledData.dataSize=52]}], age: 39ms, time: 1622207445000
05-28 18:40:44.404 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: 35.344746
05-28 18:40:44.406 DEBUG [TrackingService b]
ℹ️ Force cancel cancel stopTimeout due to apparent movement beyond stoppedAt location
05-28 18:40:44.406 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:40:44.407 DEBUG [TSLocationManager locationIsInvalid] Distance from last location: 26.543148, apparent speed: 6.635787
05-28 18:40:44.408 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 17.1
05-28 18:40:44.410 DEBUG [TSLocationManager incrementOdometer] Odometer: 512.7119
05-28 18:40:44.416 INFO [TSScheduleManager cancelOneShot]
⏰ Cancel OneShot: STOP_TIMEOUT
05-28 18:40:44.443 INFO [TSScheduleManager oneShot]
⏰ Scheduled OneShot: MOTION_ACTIVITY_CHECK in 64000ms (jobID: -18513055)
05-28 18:40:44.448 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:40:44.471 INFO [b persist]
✅ INSERT: ac027f55-9ce0-41b0-8827-dd4d89c086e9
05-28 18:40:44.484 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 1)
╠═════════════════════════════════════════════
05-28 18:40:44.511 DEBUG [AbstractService a]
🎾 BackgroundTaskService [eventCount: 1]
05-28 18:40:44.512 INFO [BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 24
05-28 18:40:44.534 DEBUG [b first]
✅ Locked 1 records
05-28 18:40:44.535 INFO [HttpService a]
🔵 HTTP POST: ac027f55-9ce0-41b0-8827-dd4d89c086e9
05-28 18:40:46.664 INFO [HttpService$i onResponse]
🔵 Response: 200
05-28 18:40:46.675 DEBUG [b destroy]
✅ DESTROY: ac027f55-9ce0-41b0-8827-dd4d89c086e9
05-28 18:40:46.693 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 24
05-28 18:40:46.695 DEBUG [AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false]
05-28 18:40:46.710 DEBUG [AbstractService onDestroy]
🔴 BackgroundTaskService destroyed
05-28 18:40:47.391 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:40:47.402 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.842923,72.132896 acc=12 et=+1h18m59s544ms alt=32.02596904696766 vel=6.386213 bear=322.8571 {Bundle[mParcelledData.dataSize=52]}], age: 37ms, time: 1622207448000
05-28 18:40:47.405 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:40:47.405 DEBUG [TSLocationManager locationIsInvalid] Distance from last location: 20.35369, apparent speed: 6.780043
05-28 18:40:47.406 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 17.1
05-28 18:40:47.408 DEBUG [TSLocationManager incrementOdometer] Odometer: 533.0656
05-28 18:40:47.423 INFO [b persist]
✅ INSERT: 107ffc22-9b87-4462-ba38-229dd1321e3d
05-28 18:40:47.431 INFO [TSScheduleManager oneShot]
⏰ Scheduled OneShot: STOP_TIMEOUT in 300000ms (jobID: 2059034116)
05-28 18:40:47.439 INFO [TSScheduleManager cancelOneShot]
⏰ Cancel OneShot: MOTION_ACTIVITY_CHECK
05-28 18:40:47.447 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 1)
╠═════════════════════════════════════════════
05-28 18:40:47.455 INFO [TSLocationManager removeLocationUpdates]
🔴 Location-services: OFF
05-28 18:40:47.459 INFO [TSLocationManager requestLocationUpdates]
🎾 Location-services: ON
05-28 18:40:47.461 DEBUG [TSConfig translateDesiredAccuracy] translateDesiredAccuracy (true): -1
05-28 18:40:47.464 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:40:47.502 DEBUG [AbstractService a]
🎾 BackgroundTaskService [eventCount: 1]
05-28 18:40:47.503 INFO [BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 25
05-28 18:40:47.527 DEBUG [b first]
✅ Locked 1 records
05-28 18:40:47.528 INFO [HttpService a]
🔵 HTTP POST: 107ffc22-9b87-4462-ba38-229dd1321e3d
05-28 18:40:47.537 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:40:47.540 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.842923,72.132896 acc=12 et=+1h18m59s544ms alt=32.02596904696766 vel=6.386213 bear=322.8571 {Bundle[mParcelledData.dataSize=52]}], age: 176ms, time: 1622207448000
05-28 18:40:47.541 DEBUG [TrackingService b] Received stoppedAt location
05-28 18:40:47.542 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: -24.222
05-28 18:40:47.544 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:40:47.545 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:40:47.546 INFO [TSLocationManager onLocationResult]
🔵 Re-scaled distanceFilter: 10.0->20.0)
05-28 18:40:47.555 DEBUG [TSLocationManager onLocationResult]
ℹ️ IGNORED: same as last location
05-28 18:40:47.563 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:40:47.565 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:40:47.636 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:40:47.639 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.842923,72.132896 acc=12 et=+1h18m59s544ms alt=32.02596904696766 vel=6.386213 bear=322.8571 {Bundle[mParcelledData.dataSize=52]}], age: 275ms, time: 1622207448000
05-28 18:40:47.640 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: -24.222
05-28 18:40:47.641 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:40:47.642 DEBUG [TSLocationManager onLocationResult]
ℹ️ IGNORED: same as last location
05-28 18:40:47.642 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:40:47.661 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:40:47.663 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:40:48.090 INFO [HttpService$i onResponse]
🔵 Response: 200
05-28 18:40:48.094 DEBUG [b destroy]
✅ DESTROY: 107ffc22-9b87-4462-ba38-229dd1321e3d
05-28 18:40:48.112 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 25
05-28 18:40:48.113 DEBUG [AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false]
05-28 18:40:48.120 DEBUG [AbstractService onDestroy]
🔴 BackgroundTaskService destroyed
05-28 18:40:50.407 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:40:50.416 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.843082,72.132779 acc=15 et=+1h19m2s542ms alt=31.763490055496106 vel=7.168782 bear=328.3793 {Bundle[mParcelledData.dataSize=52]}], age: 52ms, time: 1622207451000
05-28 18:40:50.418 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:40:50.418 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: -5.648875
05-28 18:40:50.420 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:40:50.420 DEBUG [TSLocationManager locationIsInvalid] Distance from last location: 21.315125, apparent speed: 7.1097813
05-28 18:40:50.424 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 17.1
05-28 18:40:50.427 DEBUG [TSLocationManager incrementOdometer] Odometer: 554.38074
05-28 18:40:50.444 INFO [b persist]
✅ INSERT: a9a21d4c-10bb-4051-9b91-2ea3635baeba
05-28 18:40:50.465 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 1)
╠═════════════════════════════════════════════
05-28 18:40:50.498 DEBUG [AbstractService a]
🎾 BackgroundTaskService [eventCount: 1]
05-28 18:40:50.499 INFO [BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 26
05-28 18:40:50.512 DEBUG [b first]
✅ Locked 1 records
05-28 18:40:50.513 INFO [HttpService a]
🔵 HTTP POST: a9a21d4c-10bb-4051-9b91-2ea3635baeba
05-28 18:40:51.331 INFO [HttpService$i onResponse]
🔵 Response: 200
05-28 18:40:51.336 DEBUG [b destroy]
✅ DESTROY: a9a21d4c-10bb-4051-9b91-2ea3635baeba
05-28 18:40:51.359 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 26
05-28 18:40:51.370 DEBUG [AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false]
05-28 18:40:51.385 DEBUG [AbstractService onDestroy]
🔴 BackgroundTaskService destroyed
05-28 18:40:54.392 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:40:54.400 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.843251,72.132655 acc=14 et=+1h19m6s541ms alt=31.739414055329142 vel=5.6045246 bear=321.43713 {Bundle[mParcelledData.dataSize=52]}], age: 37ms, time: 1622207455000
05-28 18:40:54.408 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:40:54.408 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: 17.738934
05-28 18:40:54.409 DEBUG [TSLocationManager locationIsInvalid] Distance from last location: 22.534872, apparent speed: 5.635127
05-28 18:40:54.410 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:40:54.410 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 17.1
05-28 18:40:54.414 DEBUG [TSLocationManager incrementOdometer] Odometer: 576.9156
05-28 18:40:54.454 INFO [b persist]
✅ INSERT: ed8c7827-82ac-4a46-8e95-e18b857ed247
05-28 18:40:54.471 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 1)
╠═════════════════════════════════════════════
05-28 18:40:54.498 DEBUG [AbstractService a]
🎾 BackgroundTaskService [eventCount: 1]
05-28 18:40:54.499 INFO [BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 27
05-28 18:40:54.525 DEBUG [b first]
✅ Locked 1 records
05-28 18:40:54.526 INFO [HttpService a]
🔵 HTTP POST: ed8c7827-82ac-4a46-8e95-e18b857ed247
05-28 18:40:55.167 INFO [HttpService$i onResponse]
🔵 Response: 200
05-28 18:40:55.171 DEBUG [b destroy]
✅ DESTROY: ed8c7827-82ac-4a46-8e95-e18b857ed247
05-28 18:40:55.194 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 27
05-28 18:40:55.199 DEBUG [AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false]
05-28 18:40:55.206 DEBUG [AbstractService onDestroy]
🔴 BackgroundTaskService destroyed
05-28 18:40:58.401 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:40:58.413 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.843415,72.132565 acc=11 et=+1h19m10s542ms alt=31.764740976645346 vel=4.8203616 bear=331.02966 {Bundle[mParcelledData.dataSize=52]}], age: 49ms, time: 1622207459000
05-28 18:40:58.415 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: 40.61515
05-28 18:40:58.415 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:40:58.416 DEBUG [TrackingService b]
ℹ️ Force cancel cancel stopTimeout due to apparent movement beyond stoppedAt location
05-28 18:40:58.416 DEBUG [TSLocationManager locationIsInvalid] Distance from last location: 20.292854, apparent speed: 5.0732136
05-28 18:40:58.418 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 14.0
05-28 18:40:58.422 DEBUG [TSLocationManager incrementOdometer] Odometer: 597.20844
05-28 18:40:58.425 INFO [TSScheduleManager cancelOneShot]
⏰ Cancel OneShot: STOP_TIMEOUT
05-28 18:40:58.453 INFO [TSScheduleManager oneShot]
⏰ Scheduled OneShot: MOTION_ACTIVITY_CHECK in 64000ms (jobID: -18513055)
05-28 18:40:58.457 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:40:58.482 INFO [b persist]
✅ INSERT: e5633bcf-c504-4145-851d-7960f2e54c96
05-28 18:40:58.495 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 1)
╠═════════════════════════════════════════════
05-28 18:40:58.522 DEBUG [AbstractService a]
🎾 BackgroundTaskService [eventCount: 1]
05-28 18:40:58.522 INFO [BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 28
05-28 18:40:58.542 DEBUG [b first]
✅ Locked 1 records
05-28 18:40:58.543 INFO [HttpService a]
🔵 HTTP POST: e5633bcf-c504-4145-851d-7960f2e54c96
05-28 18:40:59.131 INFO [HttpService$i onResponse]
🔵 Response: 200
05-28 18:40:59.134 DEBUG [b destroy]
✅ DESTROY: e5633bcf-c504-4145-851d-7960f2e54c96
05-28 18:40:59.161 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 28
05-28 18:40:59.164 DEBUG [AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false]
05-28 18:40:59.217 DEBUG [AbstractService onDestroy]
🔴 BackgroundTaskService destroyed
05-28 18:41:03.392 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:41:03.402 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.843590,72.132416 acc=11 et=+1h19m15s541ms alt=31.7387916620534 vel=5.2681475 bear=322.73016 {Bundle[mParcelledData.dataSize=52]}], age: 39ms, time: 1622207464000
05-28 18:41:03.405 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:41:03.406 DEBUG [TSLocationManager locationIsInvalid] Distance from last location: 24.6241, apparent speed: 4.925805
05-28 18:41:03.407 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 14.853
05-28 18:41:03.409 DEBUG [TSLocationManager incrementOdometer] Odometer: 621.8325
05-28 18:41:03.425 INFO [b persist]
✅ INSERT: 33a21336-03e0-441e-9e88-55a7aef7fda4
05-28 18:41:03.431 INFO [TSScheduleManager oneShot]
⏰ Scheduled OneShot: STOP_TIMEOUT in 300000ms (jobID: 2059034116)
05-28 18:41:03.438 INFO [TSScheduleManager cancelOneShot]
⏰ Cancel OneShot: MOTION_ACTIVITY_CHECK
05-28 18:41:03.439 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 1)
╠═════════════════════════════════════════════
05-28 18:41:03.454 INFO [TSLocationManager removeLocationUpdates]
🔴 Location-services: OFF
05-28 18:41:03.457 INFO [TSLocationManager requestLocationUpdates]
🎾 Location-services: ON
05-28 18:41:03.458 DEBUG [TSConfig translateDesiredAccuracy] translateDesiredAccuracy (true): -1
05-28 18:41:03.461 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:41:03.513 DEBUG [AbstractService a]
🎾 BackgroundTaskService [eventCount: 1]
05-28 18:41:03.513 INFO [BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 29
05-28 18:41:03.551 DEBUG [b first]
✅ Locked 1 records
05-28 18:41:03.554 INFO [HttpService a]
🔵 HTTP POST: 33a21336-03e0-441e-9e88-55a7aef7fda4
05-28 18:41:03.559 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:41:03.564 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.843590,72.132416 acc=11 et=+1h19m15s541ms alt=31.7387916620534 vel=5.2681475 bear=322.73016 {Bundle[mParcelledData.dataSize=52]}], age: 202ms, time: 1622207464000
05-28 18:41:03.566 DEBUG [TrackingService b] Received stoppedAt location
05-28 18:41:03.567 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: -22.142
05-28 18:41:03.569 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:41:03.569 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:41:03.570 INFO [TSLocationManager onLocationResult]
🔵 Re-scaled distanceFilter: 10.0->20.0)
05-28 18:41:03.582 DEBUG [TSLocationManager onLocationResult]
ℹ️ IGNORED: same as last location
05-28 18:41:03.594 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:41:03.596 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:41:03.650 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:41:03.653 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.843590,72.132416 acc=11 et=+1h19m15s541ms alt=31.7387916620534 vel=5.2681475 bear=322.73016 {Bundle[mParcelledData.dataSize=52]}], age: 291ms, time: 1622207464000
05-28 18:41:03.654 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: -22.142
05-28 18:41:03.656 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:41:03.656 DEBUG [TSLocationManager onLocationResult]
ℹ️ IGNORED: same as last location
05-28 18:41:03.656 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:41:03.677 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:41:03.678 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:41:04.455 INFO [HttpService$i onResponse]
🔵 Response: 200
05-28 18:41:04.459 DEBUG [b destroy]
✅ DESTROY: 33a21336-03e0-441e-9e88-55a7aef7fda4
05-28 18:41:04.488 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 29
05-28 18:41:04.491 DEBUG [AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false]
05-28 18:41:04.500 DEBUG [AbstractService onDestroy]
🔴 BackgroundTaskService destroyed
05-28 18:41:08.445 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:41:08.449 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.843727,72.132232 acc=16 et=+1h19m20s540ms alt=31.498773594908574 vel=5.3757343 bear=305.47845 {Bundle[mParcelledData.dataSize=52]}], age: 88ms, time: 1622207469000
05-28 18:41:08.450 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: -2.7683897
05-28 18:41:08.451 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:41:08.452 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:41:08.453 DEBUG [TSLocationManager locationIsInvalid] Distance from last location: 24.13561, apparent speed: 4.829054
05-28 18:41:08.454 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 14.853
05-28 18:41:08.455 DEBUG [TSLocationManager incrementOdometer] Odometer: 645.96814
05-28 18:41:08.589 INFO [b persist]
✅ INSERT: 692c9a0a-1dd1-4b09-b9e2-6d62ba1cbb1d
05-28 18:41:08.632 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 1)
╠═════════════════════════════════════════════
05-28 18:41:08.680 DEBUG [AbstractService a]
🎾 BackgroundTaskService [eventCount: 1]
05-28 18:41:08.681 INFO [BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 30
05-28 18:41:08.735 DEBUG [b first]
✅ Locked 1 records
05-28 18:41:08.736 INFO [HttpService a]
🔵 HTTP POST: 692c9a0a-1dd1-4b09-b9e2-6d62ba1cbb1d
05-28 18:41:09.403 INFO [HttpService$i onResponse]
🔵 Response: 200
05-28 18:41:09.405 DEBUG [b destroy]
✅ DESTROY: 692c9a0a-1dd1-4b09-b9e2-6d62ba1cbb1d
05-28 18:41:09.428 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 30
05-28 18:41:09.430 DEBUG [AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false]
05-28 18:41:09.435 DEBUG [AbstractService onDestroy]
🔴 BackgroundTaskService destroyed
05-28 18:41:11.378 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:41:11.386 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.843863,72.132077 acc=13 et=+1h19m23s537ms alt=31.52634889848035 vel=5.7648935 bear=318.1086 {Bundle[mParcelledData.dataSize=52]}], age: 27ms, time: 1622207472000
05-28 18:41:11.387 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: 21.965954
05-28 18:41:11.388 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:41:11.388 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:41:11.388 DEBUG [TSLocationManager locationIsInvalid] Distance from last location: 21.770235, apparent speed: 7.264009
05-28 18:41:11.390 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 12.833
05-28 18:41:11.395 DEBUG [TSLocationManager incrementOdometer] Odometer: 667.7384
05-28 18:41:11.452 INFO [b persist]
✅ INSERT: 7dbec2a2-4e5f-46cb-b722-986662bf2601
05-28 18:41:11.469 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 1)
╠═════════════════════════════════════════════
05-28 18:41:11.510 DEBUG [AbstractService a]
🎾 BackgroundTaskService [eventCount: 1]
05-28 18:41:11.514 INFO [BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 31
05-28 18:41:11.538 DEBUG [b first]
✅ Locked 1 records
05-28 18:41:11.539 INFO [HttpService a]
🔵 HTTP POST: 7dbec2a2-4e5f-46cb-b722-986662bf2601
05-28 18:44:06.776 INFO [TSConfig print]
╔═════════════════════════════════════════════
║ TSLocationManager version: 3.1.22 (378)
╠═════════════════════════════════════════════
╟─ vivo vivo Y51L @ 5.1.1 (react-native)
{
"activityRecognitionInterval": 10000,
"allowIdenticalLocations": false,
"authorization": {},
"autoSync": true,
"autoSyncThreshold": 0,
"backgroundPermissionRationale": {
"title": "Allow {applicationName} to access this device's location even when closed or not in use.",
"message": "This app collects location data to enable recording your trips to work and calculate distance-travelled.",
"positiveAction": "Change to \"{backgroundPermissionOptionLabel}\"",
"negativeAction": "Cancel"
},
"batchSync": false,
"configUrl": "",
"debug": true,
"deferTime": 0,
"desiredAccuracy": -1,
"desiredOdometerAccuracy": 100,
"disableAutoSyncOnCellular": false,
"disableElasticity": false,
"disableLocationAuthorizationAlert": false,
"disableMotionActivityUpdates": false,
"disableStopDetection": false,
"distanceFilter": 10,
"elasticityMultiplier": 1,
"enableHeadless": true,
"enableTimestampMeta": false,
"extras": {},
"fastestLocationUpdateInterval": -1,
"foregroundService": true,
"geofenceInitialTriggerEntry": true,
"geofenceModeHighAccuracy": false,
"geofenceProximityRadius": 1000,
"geofenceTemplate": "",
"headers": {},
"headlessJobService": "com.transistorsoft.rnbackgroundgeolocation.HeadlessTask",
"heartbeatInterval": -1,
"httpRootProperty": "location",
"httpTimeout": 60000,
"isMoving": true,
"locationAuthorizationRequest": "Always",
"locationTemplate": "",
"locationTimeout": 60,
"locationUpdateInterval": 1000,
"locationsOrderDirection": "ASC",
"logLevel": 5,
"logMaxDays": 14,
"maxBatchSize": -1,
"maxDaysToPersist": 14,
"maxRecordsToPersist": -1,
"method": "POST",
"minimumActivityRecognitionConfidence": 75,
"motionTriggerDelay": 0,
"notification": {
"layout": "",
"title": "FAK App Tracking",
"text": "Your live trip is started.",
"color": "",
"channelName": "FAK App Tracker",
"smallIcon": "mipmap\/ic_notification",
"largeIcon": "mipmap\/ic_launcher",
"priority": 1,
"sticky": true,
"strings": {},
"actions": []
},
"params": {
"platform": "android",
"orderId": 58
},
"persist": true,
"persistMode": 2,
"schedule": [],
"scheduleUseAlarmManager": false,
"speedJumpFilter": 300,
"startOnBoot": true,
"stationaryRadius": 25,
"stopAfterElapsedMinutes": 0,
"stopOnStationary": false,
"stopOnTerminate": false,
"stopTimeout": 5,
"triggerActivities": "in_vehicle, on_bicycle, on_foot, running, walking",
"url": "https:\/\/app.faktrack.com\/api\/offline-data",
"useSignificantChangesOnly": false,
"enabled": true,
"schedulerEnabled": false,
"trackingMode": 1,
"odometer": 667.7384033203125,
"isFirstBoot": false,
"didLaunchInBackground": false
}
05-28 18:44:06.784 INFO [TSConfig print]
╔═════════════════════════════════════════════
║ DEVICE SENSORS
╠═════════════════════════════════════════════
╟─ ✅ ACCELEROMETER: {Sensor name="lis3dh-accel", vendor="STMicroelectronics", version=1, type=1, maxRange=156.8, resolution=0.01, power=0.01, minDelay=10000}
╟─ ✅ GYROSCOPE: {Sensor name="yas533-pseudo-gyro", vendor="oem", version=1, type=4, maxRange=50.0, resolution=0.01, power=1.0, minDelay=10000}
╟─ ✅ MAGNETOMETER: {Sensor name="yas533-mag", vendor="Yamaha", version=1, type=2, maxRange=1200.0, resolution=1.0, power=0.4, minDelay=10000}
╟─ ⚠️ SIGNIFICANT_MOTION: none. Motion-detection system performance will be degraded
╚═════════════════════════════════════════════
05-28 18:44:06.835 INFO [BackgroundGeolocation <init>]
✅ Google Play Services: connected (version code:12451000)
05-28 18:44:06.845 DEBUG [TSLocationManager$d run]
ℹ️ Load last odometer location: Location[TSLocationManager 23.843863,72.132077 acc=13 t=?!? et=?!? {Bundle[{odometer=667.7384}]}]
05-28 18:44:06.859 DEBUG [HttpService startMonitoringConnectivityChanges]
🎾 Start monitoring connectivity changes
05-28 18:44:06.864 DEBUG [HttpService a]
╔═════════════════════════════════════════════
║ 📶 Connectivity change: connected? true
╠═════════════════════════════════════════════
05-28 18:44:06.876 INFO [BackgroundGeolocation d]
🎾 Start monitoring location-provider changes
05-28 18:44:06.898 DEBUG [b prune]
ℹ️ PRUNE -14 days
05-28 18:44:07.869 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 1)
╠═════════════════════════════════════════════
05-28 18:44:07.909 DEBUG [AbstractService a]
🎾 BackgroundTaskService [eventCount: 1]
05-28 18:44:07.910 INFO [BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 1
05-28 18:44:07.934 DEBUG [b first]
✅ Locked 1 records
05-28 18:44:07.935 INFO [HttpService a]
🔵 HTTP POST: 7dbec2a2-4e5f-46cb-b722-986662bf2601
05-28 18:44:09.049 INFO [HttpService$i onResponse]
🔵 Response: 200
05-28 18:44:09.052 DEBUG [b destroy]
✅ DESTROY: 7dbec2a2-4e5f-46cb-b722-986662bf2601
05-28 18:44:09.268 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 1
05-28 18:44:09.269 DEBUG [AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false]
05-28 18:44:09.274 DEBUG [AbstractService onDestroy]
🔴 BackgroundTaskService destroyed
05-28 18:44:14.868 DEBUG [TSConfig d] ℹ️ Persist config, dirty: [isMoving]
05-28 18:44:14.919 DEBUG [TSLocationManager clearLastOdometerLocation]
ℹ️ Clear last odometer location
05-28 18:44:14.922 DEBUG [TSGeofenceManager c] ℹ️ Persist monitored geofences: []
05-28 18:44:14.927 DEBUG [TSGeofenceManager e]
🔴 Stop monitoring geofences
05-28 18:44:14.945 INFO [ActivityRecognitionService c]
🔴 Stop motion-activity updates
05-28 18:44:14.963 INFO [HeartbeatService c]
🔴 Stop heartbeat
05-28 18:44:14.964 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: false]
05-28 18:44:14.972 DEBUG [HttpService stopMonitoringConnectivityChanges]
🔴 Stop monitoring connectivity changes
05-28 18:44:15.015 DEBUG [AbstractService a] ⚙️︎ finish GeofencingService [eventCount: 0, sticky: false]
05-28 18:44:15.021 DEBUG [c e]
ℹ️ LocationAuthorization: Permission granted
05-28 18:44:15.024 DEBUG [AbstractService onDestroy]
🔴 TrackingService destroyed
05-28 18:44:15.037 DEBUG [AbstractService onDestroy]
🔴 GeofencingService destroyed
05-28 18:44:15.082 INFO [ActivityRecognitionService b]
🎾 Start motion-activity updates
05-28 18:44:15.083 DEBUG [AbstractService a] ⚙️︎ finish ActivityRecognitionService [eventCount: 0, sticky: false]
05-28 18:44:15.102 DEBUG [HttpService startMonitoringConnectivityChanges]
🎾 Start monitoring connectivity changes
05-28 18:44:15.107 DEBUG [a c]
🎾 Start monitoring powersave changes
05-28 18:44:15.119 INFO [HeartbeatService c]
🔴 Stop heartbeat
05-28 18:44:15.133 INFO [TSScheduleManager oneShot]
⏰ Scheduled OneShot: TERMINATE_EVENT in 10000ms (jobID: -1708771588)
05-28 18:44:15.138 DEBUG [c f]
ℹ️ LocationAuthorization: Permission granted
05-28 18:44:15.139 INFO [TrackingService a]
🔵 setPace: false → false
05-28 18:44:15.194 DEBUG [AbstractService onDestroy]
🔴 ActivityRecognitionService destroyed
05-28 18:44:15.259 DEBUG [TSConfig d] ℹ️ Persist config, dirty: [backgroundPermissionRationale, backgroundPermissionRationale.title, backgroundPermissionRationale.message, backgroundPermissionRationale.negativeAction, debug, desiredAccuracy, enableHeadless, headlessJobService, logLevel, logMaxDays, maxDaysToPersist, notification, notification.title, notification.text, notification.smallIcon, notification.largeIcon, notification.priority, notification.sticky, notification.channelName, params, startOnBoot, stopOnTerminate, url]
05-28 18:44:15.273 INFO [ActivityRecognitionService b]
🎾 Start motion-activity updates
05-28 18:44:15.282 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 0)
╠═════════════════════════════════════════════
05-28 18:44:15.308 DEBUG [TSConfig d] ℹ️ Persist config, dirty: [isMoving]
05-28 18:44:15.315 INFO [HeartbeatService c]
🔴 Stop heartbeat
05-28 18:44:15.323 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 0)
╠═════════════════════════════════════════════
05-28 18:44:15.325 DEBUG [TSLocationManagerActivity stop] eventCount: 0
05-28 18:44:15.327 INFO [ActivityRecognitionService b]
🎾 Start motion-activity updates
05-28 18:44:15.344 DEBUG [c f]
ℹ️ LocationAuthorization: Permission granted
05-28 18:44:15.357 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 0)
╠═════════════════════════════════════════════
05-28 18:44:15.357 INFO [TrackingService a]
🔵 setPace: false → true
05-28 18:44:15.411 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:44:15.413 INFO [TrackingService h]
╔═════════════════════════════════════════════
║ TrackingService motionchange: true
╠═════════════════════════════════════════════
05-28 18:44:15.414 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:44:15.451 DEBUG [AbstractService a] ⚙️︎ finish LocationRequestService [eventCount: 0, sticky: false]
05-28 18:44:15.467 DEBUG [AbstractService onDestroy]
🔴 LocationRequestService destroyed
05-28 18:44:15.555 DEBUG [AbstractService a]
🎾 LocationRequestService [eventCount: 1]
05-28 18:44:15.559 INFO [LocationRequestService a]
ℹ️ Location availability: true
05-28 18:44:15.560 DEBUG [AbstractService a] ⚙️︎ finish LocationRequestService [eventCount: 0, sticky: false]
05-28 18:44:15.562 DEBUG [TSLocationManagerActivity onDestroy]
05-28 18:44:15.813 DEBUG [AbstractService onDestroy]
🔴 LocationRequestService destroyed
05-28 18:44:15.873 DEBUG [AbstractService a]
🎾 LocationRequestService [eventCount: 1]
05-28 18:44:15.878 INFO [LocationRequestService b]
╔═════════════════════════════════════════════
║ motionchange LocationResult: 2
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.848446,72.127108 acc=39 et=+1h22m27s968ms alt=32.4360836854175 {Bundle[mParcelledData.dataSize=52]}], age: 90ms, time: 1622207655788
05-28 18:44:15.911 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 38.563
05-28 18:44:15.959 DEBUG [LocationRequestService b] SingleLocationRequest 2 isFinished? false
05-28 18:44:15.960 DEBUG [AbstractService a] ⚙️︎ finish LocationRequestService [eventCount: 0, sticky: true]
05-28 18:44:20.410 DEBUG [AbstractService a]
🎾 LocationRequestService [eventCount: 1]
05-28 18:44:20.421 INFO [LocationRequestService b]
╔═════════════════════════════════════════════
║ motionchange LocationResult: 2
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.848550,72.127007 acc=27 et=+1h22m32s538ms alt=32.40286369222358 vel=2.2009435 bear=260.5184 {Bundle[mParcelledData.dataSize=52]}], age: 61ms, time: 1622207661000
05-28 18:44:20.463 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 32.672
05-28 18:44:20.469 DEBUG [LocationRequestService b] SingleLocationRequest 2 isFinished? false
05-28 18:44:20.470 DEBUG [AbstractService a] ⚙️︎ finish LocationRequestService [eventCount: 0, sticky: true]
05-28 18:44:21.279 DEBUG [AbstractService a]
🎾 LocationRequestService [eventCount: 1]
05-28 18:44:21.285 INFO [LocationRequestService b]
╔═════════════════════════════════════════════
║ motionchange LocationResult: 2
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.848550,72.126991 acc=18 et=+1h22m33s341ms alt=32.262011042863044 vel=2.247595 bear=260.27957 {Bundle[mParcelledData.dataSize=52]}], age: 121ms, time: 1622207661160
05-28 18:44:21.291 INFO [TSLocationManager onSingleLocationResult]
🔵 Acquired motionchange position, isMoving: true
05-28 18:44:21.292 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 26.781
05-28 18:44:21.321 DEBUG [AbstractService a] ⚙️︎ finish LocationRequestService [eventCount: 0, sticky: false]
05-28 18:44:21.335 DEBUG [AbstractService onDestroy]
🔴 LocationRequestService destroyed
05-28 18:44:21.370 INFO [TSLocationManager requestLocationUpdates]
🎾 Location-services: ON
05-28 18:44:21.373 INFO [TSLocationManager requestLocationUpdates]
🎾 Location-services: ON
05-28 18:44:21.374 DEBUG [TSConfig translateDesiredAccuracy] translateDesiredAccuracy (true): -1
05-28 18:44:21.376 INFO [ActivityRecognitionService b]
🎾 Start motion-activity updates
05-28 18:44:21.376 DEBUG [LocationRequestService b] SingleLocationRequest 2 isFinished? true
05-28 18:44:21.378 INFO [TSLocationManager removeLocationUpdates]
🔴 Location-services: OFF
05-28 18:44:21.379 DEBUG [AbstractService a] ⚙️︎ finish LocationRequestService [eventCount: 0, sticky: false]
05-28 18:44:21.382 INFO [b persist]
✅ INSERT: de19b449-fa9e-4d3e-b9a6-4cda260cf05b
05-28 18:44:21.383 INFO [TSLocationManager requestLocationUpdates]
🎾 Location-services: ON
05-28 18:44:21.384 DEBUG [TSConfig translateDesiredAccuracy] translateDesiredAccuracy (true): -1
05-28 18:44:21.401 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 1)
╠═════════════════════════════════════════════
05-28 18:44:21.441 DEBUG [AbstractService a]
🎾 BackgroundTaskService [eventCount: 1]
05-28 18:44:21.442 INFO [BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 2
05-28 18:44:21.465 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:44:21.471 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.848550,72.126991 acc=18 et=+1h22m33s341ms alt=32.262011042863044 vel=2.247595 bear=260.27957 {Bundle[mParcelledData.dataSize=52]}], age: 309ms, time: 1622207661160
05-28 18:44:21.475 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:44:21.476 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:44:21.478 DEBUG [TSLocationManager onLocationResult]
ℹ️ IGNORED: same as last location
05-28 18:44:21.499 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:44:21.500 INFO [TrackingService a]
ℹ️ Location availability: true
05-28 18:44:21.501 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:44:21.521 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:44:21.526 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.848550,72.126991 acc=18 et=+1h22m33s341ms alt=32.262011042863044 vel=2.247595 bear=260.27957 {Bundle[mParcelledData.dataSize=52]}], age: 365ms, time: 1622207661160
05-28 18:44:21.530 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:44:21.530 DEBUG [TSLocationManager onLocationResult]
ℹ️ IGNORED: same as last location
05-28 18:44:21.534 INFO [TSScheduleManager oneShot]
⏰ Oneshot STOP_TIMEOUT is already pending
05-28 18:44:21.538 INFO [TSLocationManager removeLocationUpdates]
🔴 Location-services: OFF
05-28 18:44:21.540 INFO [TSLocationManager requestLocationUpdates]
🎾 Location-services: ON
05-28 18:44:21.542 DEBUG [TSConfig translateDesiredAccuracy] translateDesiredAccuracy (true): -1
05-28 18:44:21.544 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:44:21.546 DEBUG [b first]
✅ Locked 1 records
05-28 18:44:21.547 INFO [HttpService a]
🔵 HTTP POST: de19b449-fa9e-4d3e-b9a6-4cda260cf05b
05-28 18:44:21.576 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:44:21.577 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:44:21.646 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:44:21.649 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.848550,72.126991 acc=18 et=+1h22m33s341ms alt=32.262011042863044 vel=2.247595 bear=260.27957 {Bundle[mParcelledData.dataSize=52]}], age: 488ms, time: 1622207661160
05-28 18:44:21.650 DEBUG [TrackingService b] Received stoppedAt location
05-28 18:44:21.651 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:44:21.652 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: -36.956
05-28 18:44:21.652 DEBUG [TSLocationManager onLocationResult]
ℹ️ IGNORED: same as last location
05-28 18:44:21.653 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:44:21.670 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:44:21.676 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:44:22.165 INFO [HttpService$i onResponse]
🔵 Response: 200
05-28 18:44:22.168 DEBUG [b destroy]
✅ DESTROY: de19b449-fa9e-4d3e-b9a6-4cda260cf05b
05-28 18:44:22.204 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 2
05-28 18:44:22.210 DEBUG [AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false]
05-28 18:44:22.217 DEBUG [AbstractService onDestroy]
🔴 BackgroundTaskService destroyed
05-28 18:44:23.572 INFO [TSScheduleManager oneShot]
⏰ Oneshot TERMINATE_EVENT is already pending
05-28 18:44:24.393 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:44:24.398 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.848544,72.126869 acc=17 et=+1h22m36s541ms alt=32.26740508202466 vel=3.759051 bear=282.39032 {Bundle[mParcelledData.dataSize=52]}], age: 37ms, time: 1622207665000
05-28 18:44:24.399 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: -23.300776
05-28 18:44:24.400 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:44:24.401 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:44:24.401 INFO [TSLocationManager onLocationResult]
🔵 Re-scaled distanceFilter: 10.0->20.0)
05-28 18:44:24.404 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 22.629501
05-28 18:44:24.433 INFO [b persist]
✅ INSERT: b858a880-fefe-4200-b501-3bc635a98718
05-28 18:44:24.465 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 1)
╠═════════════════════════════════════════════
05-28 18:44:24.477 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:44:24.480 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.848544,72.126869 acc=17 et=+1h22m36s541ms alt=32.26740508202466 vel=3.759051 bear=282.39032 {Bundle[mParcelledData.dataSize=52]}], age: 119ms, time: 1622207665000
05-28 18:44:24.482 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: -23.300776
05-28 18:44:24.482 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:44:24.482 DEBUG [TSLocationManager onLocationResult]
ℹ️ IGNORED: same as last location
05-28 18:44:24.484 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:44:24.505 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:44:24.507 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:44:24.556 DEBUG [AbstractService a]
🎾 BackgroundTaskService [eventCount: 1]
05-28 18:44:24.557 INFO [BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 3
05-28 18:44:24.594 DEBUG [b first]
✅ Locked 1 records
05-28 18:44:24.595 INFO [HttpService a]
🔵 HTTP POST: b858a880-fefe-4200-b501-3bc635a98718
05-28 18:44:25.159 INFO [ScheduleEvent onOneShot]
╔═════════════════════════════════════════════
║ ⏰ OneShot event fired: TERMINATE_EVENT
╠═════════════════════════════════════════════
05-28 18:44:25.172 DEBUG [TerminateEvent <init>]
ℹ️ TERMINATE_EVENT ignored (MainActivity is still active).
05-28 18:44:25.212 INFO [HttpService$i onResponse]
🔵 Response: 200
05-28 18:44:25.215 DEBUG [b destroy]
✅ DESTROY: b858a880-fefe-4200-b501-3bc635a98718
05-28 18:44:25.236 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 3
05-28 18:44:25.238 DEBUG [AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false]
05-28 18:44:25.240 DEBUG [AbstractService onDestroy]
🔴 BackgroundTaskService destroyed
05-28 18:44:27.932 DEBUG [AbstractService a]
🎾 ActivityRecognitionService [eventCount: 1]
05-28 18:44:27.935 DEBUG [ActivityRecognitionService a]
🚘 ️DetectedActivity [type=UNKNOWN, confidence=40]
05-28 18:44:27.940 DEBUG [AbstractService a] ⚙️︎ finish ActivityRecognitionService [eventCount: 0, sticky: true]
05-28 18:44:28.394 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:44:28.405 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.848609,72.126637 acc=12 et=+1h22m40s538ms alt=32.337822219978044 vel=5.564543 bear=281.93683 {Bundle[mParcelledData.dataSize=52]}], age: 44ms, time: 1622207669000
05-28 18:44:28.408 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: 6.1455345
05-28 18:44:28.409 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:44:28.409 DEBUG [TSLocationManager locationIsInvalid] Distance from last location: 24.745186, apparent speed: 6.19094
05-28 18:44:28.410 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:44:28.410 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 18.478
05-28 18:44:28.411 DEBUG [TSLocationManager incrementOdometer] Odometer: 719.02637
05-28 18:44:28.462 INFO [b persist]
✅ INSERT: ec102516-7bbd-4747-93b4-525071644ee8
05-28 18:44:28.479 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 1)
╠═════════════════════════════════════════════
05-28 18:44:28.506 DEBUG [AbstractService a]
🎾 BackgroundTaskService [eventCount: 1]
05-28 18:44:28.507 INFO [BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 4
05-28 18:44:28.523 DEBUG [b first]
✅ Locked 1 records
05-28 18:44:28.524 INFO [HttpService a]
🔵 HTTP POST: ec102516-7bbd-4747-93b4-525071644ee8
05-28 18:44:29.169 INFO [HttpService$i onResponse]
🔵 Response: 200
05-28 18:44:29.173 DEBUG [b destroy]
✅ DESTROY: ec102516-7bbd-4747-93b4-525071644ee8
05-28 18:44:29.188 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 4
05-28 18:44:29.190 DEBUG [AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false]
05-28 18:44:29.192 DEBUG [AbstractService onDestroy]
🔴 BackgroundTaskService destroyed
05-28 18:44:32.399 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:44:32.407 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.848618,72.126379 acc=9 et=+1h22m44s539ms alt=32.31382370683478 vel=5.45096 bear=279.13953 {Bundle[mParcelledData.dataSize=52]}], age: 46ms, time: 1622207673000
05-28 18:44:32.411 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: 35.491894
05-28 18:44:32.412 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:44:32.412 DEBUG [TSLocationManager locationIsInvalid] Distance from last location: 26.304523, apparent speed: 6.574487
05-28 18:44:32.412 DEBUG [TrackingService b]
ℹ️ Force cancel cancel stopTimeout due to apparent movement beyond stoppedAt location
05-28 18:44:32.414 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 17.872501
05-28 18:44:32.418 DEBUG [TSLocationManager incrementOdometer] Odometer: 745.3309
05-28 18:44:32.418 INFO [TSScheduleManager cancelOneShot]
⏰ Cancel OneShot: STOP_TIMEOUT
05-28 18:44:32.449 INFO [TSScheduleManager oneShot]
⏰ Scheduled OneShot: MOTION_ACTIVITY_CHECK in 64001ms (jobID: -18513055)
05-28 18:44:32.455 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:44:32.483 INFO [b persist]
✅ INSERT: 07fb477f-b9b0-471a-8bae-ce2214e9ec23
05-28 18:44:32.502 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 1)
╠═════════════════════════════════════════════
05-28 18:44:32.542 DEBUG [AbstractService a]
🎾 BackgroundTaskService [eventCount: 1]
05-28 18:44:32.543 INFO [BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 5
05-28 18:44:32.601 DEBUG [b first]
✅ Locked 1 records
05-28 18:44:32.602 INFO [HttpService a]
🔵 HTTP POST: 07fb477f-b9b0-471a-8bae-ce2214e9ec23
05-28 18:44:33.213 INFO [HttpService$i onResponse]
🔵 Response: 200
05-28 18:44:33.220 DEBUG [b destroy]
✅ DESTROY: 07fb477f-b9b0-471a-8bae-ce2214e9ec23
05-28 18:44:33.337 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 5
05-28 18:44:33.340 DEBUG [AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false]
05-28 18:44:33.344 DEBUG [AbstractService onDestroy]
🔴 BackgroundTaskService destroyed
05-28 18:44:36.393 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:44:36.398 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.848698,72.126165 acc=9 et=+1h22m48s540ms alt=32.3230176078095 vel=5.562237 bear=286.63367 {Bundle[mParcelledData.dataSize=52]}], age: 36ms, time: 1622207677000
05-28 18:44:36.400 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:44:36.403 DEBUG [TSLocationManager locationIsInvalid] Distance from last location: 23.492418, apparent speed: 5.871637
05-28 18:44:36.404 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 17.267
05-28 18:44:36.406 DEBUG [TSLocationManager incrementOdometer] Odometer: 768.8233
05-28 18:44:36.445 INFO [TSScheduleManager oneShot]
⏰ Scheduled OneShot: STOP_TIMEOUT in 300000ms (jobID: 2059034116)
05-28 18:44:36.453 INFO [TSScheduleManager cancelOneShot]
⏰ Cancel OneShot: MOTION_ACTIVITY_CHECK
05-28 18:44:36.469 INFO [TSLocationManager removeLocationUpdates]
🔴 Location-services: OFF
05-28 18:44:36.473 INFO [TSLocationManager requestLocationUpdates]
🎾 Location-services: ON
05-28 18:44:36.474 DEBUG [TSConfig translateDesiredAccuracy] translateDesiredAccuracy (true): -1
05-28 18:44:36.476 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:44:36.488 INFO [b persist]
✅ INSERT: e702eda1-b272-4b28-8d76-77e368d49a13
05-28 18:44:36.519 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:44:36.523 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.848698,72.126165 acc=9 et=+1h22m48s540ms alt=32.3230176078095 vel=5.562237 bear=286.63367 {Bundle[mParcelledData.dataSize=52]}], age: 161ms, time: 1622207677000
05-28 18:44:36.524 DEBUG [TrackingService b] Received stoppedAt location
05-28 18:44:36.526 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:44:36.531 INFO [TSLocationManager onLocationResult]
🔵 Re-scaled distanceFilter: 10.0->20.0)
05-28 18:44:36.531 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: -18.18
05-28 18:44:36.532 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:44:36.534 DEBUG [TSLocationManager onLocationResult]
ℹ️ IGNORED: same as last location
05-28 18:44:36.535 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 1)
╠═════════════════════════════════════════════
05-28 18:44:36.554 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:44:36.555 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:44:36.602 DEBUG [AbstractService a]
🎾 BackgroundTaskService [eventCount: 1]
05-28 18:44:36.603 INFO [BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 6
05-28 18:44:36.655 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:44:36.660 DEBUG [b first]
✅ Locked 1 records
05-28 18:44:36.661 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.848698,72.126165 acc=9 et=+1h22m48s540ms alt=32.3230176078095 vel=5.562237 bear=286.63367 {Bundle[mParcelledData.dataSize=52]}], age: 299ms, time: 1622207677000
05-28 18:44:36.661 INFO [HttpService a]
🔵 HTTP POST: e702eda1-b272-4b28-8d76-77e368d49a13
05-28 18:44:36.664 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:44:36.664 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: -18.18
05-28 18:44:36.665 DEBUG [TSLocationManager onLocationResult]
ℹ️ IGNORED: same as last location
05-28 18:44:36.666 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:44:36.687 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:44:36.689 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:44:37.369 INFO [HttpService$i onResponse]
🔵 Response: 200
05-28 18:44:37.371 DEBUG [b destroy]
✅ DESTROY: e702eda1-b272-4b28-8d76-77e368d49a13
05-28 18:44:37.481 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 6
05-28 18:44:37.483 DEBUG [AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false]
05-28 18:44:37.489 DEBUG [AbstractService onDestroy]
🔴 BackgroundTaskService destroyed
05-28 18:44:40.398 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:44:40.412 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.848750,72.125960 acc=6 et=+1h22m52s538ms alt=32.25281077838521 vel=5.6205554 bear=286.93484 {Bundle[mParcelledData.dataSize=52]}], age: 50ms, time: 1622207681000
05-28 18:44:40.413 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: 6.185802
05-28 18:44:40.414 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:44:40.414 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:44:40.415 DEBUG [TSLocationManager locationIsInvalid] Distance from last location: 21.675802, apparent speed: 5.423018
05-28 18:44:40.415 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 14.6715
05-28 18:44:40.416 DEBUG [TSLocationManager incrementOdometer] Odometer: 790.4991
05-28 18:44:40.454 INFO [b persist]
✅ INSERT: d3fc86a6-b8f2-47e8-982a-0491d71cf7b9
05-28 18:44:40.522 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 1)
╠═════════════════════════════════════════════
05-28 18:44:40.567 DEBUG [AbstractService a]
🎾 BackgroundTaskService [eventCount: 1]
05-28 18:44:40.569 INFO [BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 7
05-28 18:44:40.670 DEBUG [b first]
✅ Locked 1 records
05-28 18:44:40.671 INFO [HttpService a]
🔵 HTTP POST: d3fc86a6-b8f2-47e8-982a-0491d71cf7b9
05-28 18:44:41.534 INFO [HttpService$i onResponse]
🔵 Response: 200
05-28 18:44:41.538 DEBUG [b destroy]
✅ DESTROY: d3fc86a6-b8f2-47e8-982a-0491d71cf7b9
05-28 18:44:41.566 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 7
05-28 18:44:41.570 DEBUG [AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false]
05-28 18:44:41.576 DEBUG [AbstractService onDestroy]
🔴 BackgroundTaskService destroyed
05-28 18:44:41.977 INFO [TSScheduleManager oneShot]
⏰ Scheduled OneShot: TERMINATE_EVENT in 10000ms (jobID: -1708771588)
05-28 18:44:44.384 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:44:44.389 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.848795,72.125728 acc=8 et=+1h22m56s537ms alt=32.31356349013167 vel=6.1499276 bear=283.68585 {Bundle[mParcelledData.dataSize=52]}], age: 31ms, time: 1622207685000
05-28 18:44:44.390 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: 29.137836
05-28 18:44:44.391 DEBUG [TrackingService b]
ℹ️ Force cancel cancel stopTimeout due to apparent movement beyond stoppedAt location
05-28 18:44:44.391 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:44:44.394 DEBUG [TSLocationManager locationIsInvalid] Distance from last location: 24.129225, apparent speed: 6.0353236
05-28 18:44:44.395 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 12.076
05-28 18:44:44.396 DEBUG [TSLocationManager incrementOdometer] Odometer: 814.6283
05-28 18:44:44.399 INFO [TSScheduleManager cancelOneShot]
⏰ Cancel OneShot: STOP_TIMEOUT
05-28 18:44:44.422 INFO [TSScheduleManager oneShot]
⏰ Scheduled OneShot: MOTION_ACTIVITY_CHECK in 63998ms (jobID: -18513055)
05-28 18:44:44.428 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:44:44.450 INFO [b persist]
✅ INSERT: cbaaa5f5-9dd0-41ce-807a-b9485f91e140
05-28 18:44:44.546 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 1)
╠═════════════════════════════════════════════
05-28 18:44:44.591 DEBUG [AbstractService a]
🎾 BackgroundTaskService [eventCount: 1]
05-28 18:44:44.592 INFO [BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 8
05-28 18:44:44.671 DEBUG [b first]
✅ Locked 1 records
05-28 18:44:44.672 INFO [HttpService a]
🔵 HTTP POST: cbaaa5f5-9dd0-41ce-807a-b9485f91e140
05-28 18:44:45.324 INFO [HttpService$i onResponse]
🔵 Response: 200
05-28 18:44:45.331 DEBUG [b destroy]
✅ DESTROY: cbaaa5f5-9dd0-41ce-807a-b9485f91e140
05-28 18:44:45.354 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 8
05-28 18:44:45.356 DEBUG [AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false]
05-28 18:44:45.366 DEBUG [AbstractService onDestroy]
🔴 BackgroundTaskService destroyed
05-28 18:44:47.399 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:44:47.406 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.848797,72.125528 acc=8 et=+1h22m59s543ms alt=32.294531560651414 vel=6.196618 bear=278.60498 {Bundle[mParcelledData.dataSize=52]}], age: 41ms, time: 1622207688000
05-28 18:44:47.416 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:44:47.417 DEBUG [TSLocationManager locationIsInvalid] Distance from last location: 20.34496, apparent speed: 6.768117
05-28 18:44:47.418 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 10.0935
05-28 18:44:47.420 DEBUG [TSLocationManager incrementOdometer] Odometer: 834.97327
05-28 18:44:47.431 INFO [TSScheduleManager oneShot]
⏰ Scheduled OneShot: STOP_TIMEOUT in 300000ms (jobID: 2059034116)
05-28 18:44:47.445 INFO [TSScheduleManager cancelOneShot]
⏰ Cancel OneShot: MOTION_ACTIVITY_CHECK
05-28 18:44:47.453 INFO [b persist]
✅ INSERT: 9b6901e3-4be6-4548-a6ad-5a454a4c2096
05-28 18:44:47.466 INFO [TSLocationManager removeLocationUpdates]
🔴 Location-services: OFF
05-28 18:44:47.488 INFO [TSLocationManager requestLocationUpdates]
🎾 Location-services: ON
05-28 18:44:47.494 DEBUG [TSConfig translateDesiredAccuracy] translateDesiredAccuracy (true): -1
05-28 18:44:47.497 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:44:47.517 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 1)
╠═════════════════════════════════════════════
05-28 18:44:47.566 DEBUG [AbstractService a]
🎾 BackgroundTaskService [eventCount: 1]
05-28 18:44:47.568 INFO [BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 9
05-28 18:44:47.601 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:44:47.606 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.848797,72.125528 acc=8 et=+1h22m59s543ms alt=32.294531560651414 vel=6.196618 bear=278.60498 {Bundle[mParcelledData.dataSize=52]}], age: 241ms, time: 1622207688000
05-28 18:44:47.610 DEBUG [TrackingService b] Received stoppedAt location
05-28 18:44:47.610 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:44:47.612 INFO [TSLocationManager onLocationResult]
🔵 Re-scaled distanceFilter: 10.0->20.0)
05-28 18:44:47.613 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: -16.222
05-28 18:44:47.616 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:44:47.628 DEBUG [TSLocationManager onLocationResult]
ℹ️ IGNORED: same as last location
05-28 18:44:47.635 DEBUG [b first]
✅ Locked 1 records
05-28 18:44:47.636 INFO [HttpService a]
🔵 HTTP POST: 9b6901e3-4be6-4548-a6ad-5a454a4c2096
05-28 18:44:47.666 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:44:47.668 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:44:47.732 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:44:47.736 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.848797,72.125528 acc=8 et=+1h22m59s543ms alt=32.294531560651414 vel=6.196618 bear=278.60498 {Bundle[mParcelledData.dataSize=52]}], age: 372ms, time: 1622207688000
05-28 18:44:47.738 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:44:47.739 DEBUG [TSLocationManager onLocationResult]
ℹ️ IGNORED: same as last location
05-28 18:44:47.740 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: -16.222
05-28 18:44:47.741 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:44:47.764 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:44:47.766 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:44:48.265 INFO [HttpService$i onResponse]
🔵 Response: 200
05-28 18:44:48.268 DEBUG [b destroy]
✅ DESTROY: 9b6901e3-4be6-4548-a6ad-5a454a4c2096
05-28 18:44:48.313 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 9
05-28 18:44:48.315 DEBUG [AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false]
05-28 18:44:48.323 DEBUG [AbstractService onDestroy]
🔴 BackgroundTaskService destroyed
05-28 18:44:51.403 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:44:51.411 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.848841,72.125323 acc=10 et=+1h23m3s539ms alt=32.26206567193126 vel=4.785765 bear=294.31998 {Bundle[mParcelledData.dataSize=52]}], age: 50ms, time: 1622207692000
05-28 18:44:51.414 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: 3.8980331
05-28 18:44:51.414 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:44:51.415 DEBUG [TSLocationManager locationIsInvalid] Distance from last location: 21.509033, apparent speed: 5.382641
05-28 18:44:51.416 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:44:51.416 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 9.5
05-28 18:44:51.421 DEBUG [TSLocationManager incrementOdometer] Odometer: 856.4823
05-28 18:44:51.465 INFO [b persist]
✅ INSERT: c2a35bcc-a111-4af5-b77e-92d2c4e741ae
05-28 18:44:51.478 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 1)
╠═════════════════════════════════════════════
05-28 18:44:51.513 DEBUG [AbstractService a]
🎾 BackgroundTaskService [eventCount: 1]
05-28 18:44:51.514 INFO [BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 10
05-28 18:44:51.537 DEBUG [b first]
✅ Locked 1 records
05-28 18:44:51.538 INFO [HttpService a]
🔵 HTTP POST: c2a35bcc-a111-4af5-b77e-92d2c4e741ae
05-28 18:44:52.034 INFO [ScheduleEvent onOneShot]
╔═════════════════════════════════════════════
║ ⏰ OneShot event fired: TERMINATE_EVENT
╠═════════════════════════════════════════════
05-28 18:44:52.037 DEBUG [TerminateEvent <init>]
ℹ️ TERMINATE_EVENT ignored (MainActivity is still active).
05-28 18:44:52.054 INFO [ScheduleEvent onOneShot]
╔═════════════════════════════════════════════
║ ⏰ OneShot event fired: TERMINATE_EVENT
╠═════════════════════════════════════════════
05-28 18:44:52.059 DEBUG [TerminateEvent <init>]
ℹ️ TERMINATE_EVENT ignored (MainActivity is still active).
05-28 18:44:52.297 INFO [HttpService$i onResponse]
🔵 Response: 200
05-28 18:44:52.300 DEBUG [b destroy]
✅ DESTROY: c2a35bcc-a111-4af5-b77e-92d2c4e741ae
05-28 18:44:52.343 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 10
05-28 18:44:52.346 DEBUG [AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false]
05-28 18:44:52.358 DEBUG [AbstractService onDestroy]
🔴 BackgroundTaskService destroyed
05-28 18:44:56.385 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:44:56.394 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.848919,72.125104 acc=10 et=+1h23m8s542ms alt=32.660034765937596 vel=5.334217 bear=292.4557 {Bundle[mParcelledData.dataSize=52]}], age: 30ms, time: 1622207697000
05-28 18:44:56.397 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: 27.640022
05-28 18:44:56.397 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:44:56.398 DEBUG [TSLocationManager locationIsInvalid] Distance from last location: 23.90883, apparent speed: 4.7798543
05-28 18:44:56.399 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 9.5
05-28 18:44:56.399 DEBUG [TrackingService b]
ℹ️ Force cancel cancel stopTimeout due to apparent movement beyond stoppedAt location
05-28 18:44:56.400 DEBUG [TSLocationManager incrementOdometer] Odometer: 880.3911
05-28 18:44:56.403 INFO [TSScheduleManager cancelOneShot]
⏰ Cancel OneShot: STOP_TIMEOUT
05-28 18:44:56.422 INFO [TSScheduleManager oneShot]
⏰ Scheduled OneShot: MOTION_ACTIVITY_CHECK in 65002ms (jobID: -18513055)
05-28 18:44:56.426 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:44:56.450 INFO [b persist]
✅ INSERT: 009fe24a-469c-4073-a640-60f93341d94a
05-28 18:44:56.469 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 1)
╠═════════════════════════════════════════════
05-28 18:44:56.498 DEBUG [AbstractService a]
🎾 BackgroundTaskService [eventCount: 1]
05-28 18:44:56.499 INFO [BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 11
05-28 18:44:56.517 DEBUG [b first]
✅ Locked 1 records
05-28 18:44:56.518 INFO [HttpService a]
🔵 HTTP POST: 009fe24a-469c-4073-a640-60f93341d94a
05-28 18:44:57.420 INFO [HttpService$i onResponse]
🔵 Response: 200
05-28 18:44:57.424 DEBUG [b destroy]
✅ DESTROY: 009fe24a-469c-4073-a640-60f93341d94a
05-28 18:44:57.447 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 11
05-28 18:44:57.449 DEBUG [AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false]
05-28 18:44:57.452 DEBUG [AbstractService onDestroy]
🔴 BackgroundTaskService destroyed
05-28 18:44:59.320 INFO [TSScheduleManager oneShot]
⏰ Scheduled OneShot: TERMINATE_EVENT in 10000ms (jobID: -1708771588)
05-28 18:45:00.409 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:45:00.421 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.848942,72.124891 acc=13 et=+1h23m12s543ms alt=32.97341613320306 vel=4.94103 bear=281.14685 {Bundle[mParcelledData.dataSize=52]}], age: 51ms, time: 1622207701000
05-28 18:45:00.423 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:45:00.424 DEBUG [TSLocationManager locationIsInvalid] Distance from last location: 21.832132, apparent speed: 5.456669
05-28 18:45:00.424 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 9.5
05-28 18:45:00.425 DEBUG [TSLocationManager incrementOdometer] Odometer: 902.22327
05-28 18:45:00.466 INFO [b persist]
✅ INSERT: 8e90b795-1cb4-41ce-8fc9-caeb39d3355d
05-28 18:45:00.480 INFO [TSScheduleManager oneShot]
⏰ Scheduled OneShot: STOP_TIMEOUT in 300000ms (jobID: 2059034116)
05-28 18:45:00.483 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 1)
╠═════════════════════════════════════════════
05-28 18:45:00.488 INFO [TSScheduleManager cancelOneShot]
⏰ Cancel OneShot: MOTION_ACTIVITY_CHECK
05-28 18:45:00.501 INFO [TSLocationManager removeLocationUpdates]
🔴 Location-services: OFF
05-28 18:45:00.504 INFO [TSLocationManager requestLocationUpdates]
🎾 Location-services: ON
05-28 18:45:00.505 DEBUG [TSConfig translateDesiredAccuracy] translateDesiredAccuracy (true): -1
05-28 18:45:00.508 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:45:00.557 DEBUG [AbstractService a]
🎾 BackgroundTaskService [eventCount: 1]
05-28 18:45:00.558 INFO [BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 12
05-28 18:45:00.578 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:45:00.584 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.848942,72.124891 acc=13 et=+1h23m12s543ms alt=32.97341613320306 vel=4.94103 bear=281.14685 {Bundle[mParcelledData.dataSize=52]}], age: 217ms, time: 1622207701000
05-28 18:45:00.585 DEBUG [TrackingService b] Received stoppedAt location
05-28 18:45:00.585 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:45:00.586 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: -26.0
05-28 18:45:00.586 INFO [TSLocationManager onLocationResult]
🔵 Re-scaled distanceFilter: 10.0->20.0)
05-28 18:45:00.587 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:45:00.589 DEBUG [TSLocationManager onLocationResult]
ℹ️ IGNORED: same as last location
05-28 18:45:00.602 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:45:00.603 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:45:00.611 DEBUG [b first]
✅ Locked 1 records
05-28 18:45:00.613 INFO [HttpService a]
🔵 HTTP POST: 8e90b795-1cb4-41ce-8fc9-caeb39d3355d
05-28 18:45:00.653 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:45:00.656 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.848942,72.124891 acc=13 et=+1h23m12s543ms alt=32.97341613320306 vel=4.94103 bear=281.14685 {Bundle[mParcelledData.dataSize=52]}], age: 292ms, time: 1622207701000
05-28 18:45:00.657 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: -26.0
05-28 18:45:00.658 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:45:00.659 DEBUG [TSLocationManager onLocationResult]
ℹ️ IGNORED: same as last location
05-28 18:45:00.667 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:45:00.689 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:45:00.691 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:45:01.305 INFO [HttpService$i onResponse]
🔵 Response: 200
05-28 18:45:01.310 DEBUG [b destroy]
✅ DESTROY: 8e90b795-1cb4-41ce-8fc9-caeb39d3355d
05-28 18:45:01.339 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 12
05-28 18:45:01.344 DEBUG [AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false]
05-28 18:45:01.351 DEBUG [AbstractService onDestroy]
🔴 BackgroundTaskService destroyed
05-28 18:45:05.414 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:45:05.426 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.849074,72.124745 acc=16 et=+1h23m17s548ms alt=33.46500657567483 vel=3.9131138 bear=301.55692 {Bundle[mParcelledData.dataSize=52]}], age: 55ms, time: 1622207706000
05-28 18:45:05.436 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: -7.7197895
05-28 18:45:05.437 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:45:05.438 DEBUG [TSLocationManager locationIsInvalid] Distance from last location: 20.78021, apparent speed: 4.1518903
05-28 18:45:05.438 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:45:05.438 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 9.5
05-28 18:45:05.440 DEBUG [TSLocationManager incrementOdometer] Odometer: 923.0035
05-28 18:45:05.500 INFO [b persist]
✅ INSERT: 69f53b41-53f6-4d59-909c-20bc1c24b58a
05-28 18:45:05.522 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 1)
╠═════════════════════════════════════════════
05-28 18:45:05.551 DEBUG [AbstractService a]
🎾 BackgroundTaskService [eventCount: 1]
05-28 18:45:05.552 INFO [BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 13
05-28 18:45:05.571 DEBUG [b first]
✅ Locked 1 records
05-28 18:45:05.572 INFO [HttpService a]
🔵 HTTP POST: 69f53b41-53f6-4d59-909c-20bc1c24b58a
05-28 18:45:09.359 INFO [ScheduleEvent onOneShot]
╔═════════════════════════════════════════════
║ ⏰ OneShot event fired: TERMINATE_EVENT
╠═════════════════════════════════════════════
05-28 18:45:09.365 DEBUG [TerminateEvent <init>]
ℹ️ TERMINATE_EVENT ignored (MainActivity is still active).
05-28 18:45:11.405 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:45:11.413 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.849148,72.124533 acc=9 et=+1h23m23s538ms alt=33.466012858875644 vel=4.1478596 bear=286.31396 {Bundle[mParcelledData.dataSize=52]}], age: 52ms, time: 1622207712000
05-28 18:45:11.415 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: 21.265507
05-28 18:45:11.416 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:45:11.417 DEBUG [TSLocationManager locationIsInvalid] Distance from last location: 23.140455, apparent speed: 3.8638263
05-28 18:45:11.417 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:45:11.418 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 9.5
05-28 18:45:11.420 DEBUG [TSLocationManager incrementOdometer] Odometer: 946.1439
05-28 18:45:11.473 INFO [b persist]
✅ INSERT: 4070e4d2-c615-42ea-9258-78d4f96f60ee
05-28 18:45:11.490 INFO [HttpService flush]
ℹ️ HttpService is busy
05-28 18:45:14.175 INFO [HttpService$i onResponse]
🔵 Response: 200
05-28 18:45:14.179 DEBUG [b destroy]
✅ DESTROY: 69f53b41-53f6-4d59-909c-20bc1c24b58a
05-28 18:45:14.218 DEBUG [b first]
✅ Locked 1 records
05-28 18:45:14.221 INFO [HttpService a]
🔵 HTTP POST: 4070e4d2-c615-42ea-9258-78d4f96f60ee
05-28 18:45:15.110 INFO [HttpService$i onResponse]
🔵 Response: 200
05-28 18:45:15.113 DEBUG [b destroy]
✅ DESTROY: 4070e4d2-c615-42ea-9258-78d4f96f60ee
05-28 18:45:15.133 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 13
05-28 18:45:15.135 DEBUG [AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false]
05-28 18:45:15.139 DEBUG [AbstractService onDestroy]
🔴 BackgroundTaskService destroyed
05-28 18:45:15.392 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:45:15.397 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.849196,72.124343 acc=9 et=+1h23m27s545ms alt=33.501797767409236 vel=4.660416 bear=280.53665 {Bundle[mParcelledData.dataSize=52]}], age: 32ms, time: 1622207716000
05-28 18:45:15.399 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: 40.842457
05-28 18:45:15.400 DEBUG [TrackingService b]
ℹ️ Force cancel cancel stopTimeout due to apparent movement beyond stoppedAt location
05-28 18:45:15.400 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:45:15.402 DEBUG [TSLocationManager locationIsInvalid] Distance from last location: 20.09576, apparent speed: 5.0164156
05-28 18:45:15.403 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 9.5
05-28 18:45:15.404 INFO [TSScheduleManager cancelOneShot]
⏰ Cancel OneShot: STOP_TIMEOUT
05-28 18:45:15.404 DEBUG [TSLocationManager incrementOdometer] Odometer: 966.2397
05-28 18:45:15.425 INFO [TSScheduleManager oneShot]
⏰ Scheduled OneShot: MOTION_ACTIVITY_CHECK in 64006ms (jobID: -18513055)
05-28 18:45:15.431 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:45:15.468 INFO [b persist]
✅ INSERT: dd5fa4f6-ac96-484a-ae72-74ed8ffc2b9f
05-28 18:45:15.488 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 1)
╠═════════════════════════════════════════════
05-28 18:45:15.524 DEBUG [AbstractService a]
🎾 BackgroundTaskService [eventCount: 1]
05-28 18:45:15.525 INFO [BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 14
05-28 18:45:15.554 DEBUG [b first]
✅ Locked 1 records
05-28 18:45:15.555 INFO [HttpService a]
🔵 HTTP POST: dd5fa4f6-ac96-484a-ae72-74ed8ffc2b9f
05-28 18:45:16.155 INFO [HttpService$i onResponse]
🔵 Response: 200
05-28 18:45:16.157 DEBUG [b destroy]
✅ DESTROY: dd5fa4f6-ac96-484a-ae72-74ed8ffc2b9f
05-28 18:45:16.186 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 14
05-28 18:45:16.187 DEBUG [AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false]
05-28 18:45:16.192 DEBUG [AbstractService onDestroy]
🔴 BackgroundTaskService destroyed
05-28 18:45:16.735 INFO [TSScheduleManager oneShot]
⏰ Scheduled OneShot: TERMINATE_EVENT in 10000ms (jobID: -1708771588)
05-28 18:45:20.387 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:45:20.392 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.849210,72.124102 acc=8 et=+1h23m32s538ms alt=33.545252516734216 vel=4.8738227 bear=279.28235 {Bundle[mParcelledData.dataSize=52]}], age: 33ms, time: 1622207721000
05-28 18:45:20.393 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:45:20.394 DEBUG [TSLocationManager locationIsInvalid] Distance from last location: 24.617847, apparent speed: 4.930472
05-28 18:45:20.395 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 9.5
05-28 18:45:20.397 DEBUG [TSLocationManager incrementOdometer] Odometer: 990.85754
05-28 18:45:20.425 INFO [b persist]
✅ INSERT: 2daf7dd9-ac25-4ee2-af3b-68586c8cc111
05-28 18:45:20.447 INFO [TSScheduleManager oneShot]
⏰ Scheduled OneShot: STOP_TIMEOUT in 300000ms (jobID: 2059034116)
05-28 18:45:20.450 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 1)
╠═════════════════════════════════════════════
05-28 18:45:20.455 INFO [TSScheduleManager cancelOneShot]
⏰ Cancel OneShot: MOTION_ACTIVITY_CHECK
05-28 18:45:20.472 INFO [TSLocationManager removeLocationUpdates]
🔴 Location-services: OFF
05-28 18:45:20.475 INFO [TSLocationManager requestLocationUpdates]
🎾 Location-services: ON
05-28 18:45:20.477 DEBUG [TSConfig translateDesiredAccuracy] translateDesiredAccuracy (true): -1
05-28 18:45:20.483 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:45:20.552 DEBUG [AbstractService a]
🎾 BackgroundTaskService [eventCount: 1]
05-28 18:45:20.553 INFO [BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 15
05-28 18:45:20.580 DEBUG [b first]
✅ Locked 1 records
05-28 18:45:20.584 INFO [HttpService a]
🔵 HTTP POST: 2daf7dd9-ac25-4ee2-af3b-68586c8cc111
05-28 18:45:20.587 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:45:20.591 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.849210,72.124102 acc=8 et=+1h23m32s538ms alt=33.545252516734216 vel=4.8738227 bear=279.28235 {Bundle[mParcelledData.dataSize=52]}], age: 232ms, time: 1622207721000
05-28 18:45:20.591 DEBUG [TrackingService b] Received stoppedAt location
05-28 18:45:20.592 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:45:20.592 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: -16.166
05-28 18:45:20.593 INFO [TSLocationManager onLocationResult]
🔵 Re-scaled distanceFilter: 10.0->20.0)
05-28 18:45:20.594 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:45:20.595 DEBUG [TSLocationManager onLocationResult]
ℹ️ IGNORED: same as last location
05-28 18:45:20.620 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:45:20.623 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:45:20.750 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:45:20.753 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.849210,72.124102 acc=8 et=+1h23m32s538ms alt=33.545252516734216 vel=4.8738227 bear=279.28235 {Bundle[mParcelledData.dataSize=52]}], age: 394ms, time: 1622207721000
05-28 18:45:20.755 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:45:20.755 DEBUG [TSLocationManager onLocationResult]
ℹ️ IGNORED: same as last location
05-28 18:45:20.761 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: -16.166
05-28 18:45:20.762 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:45:20.783 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:45:20.785 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:45:21.500 INFO [HttpService$i onResponse]
🔵 Response: 200
05-28 18:45:21.510 DEBUG [b destroy]
✅ DESTROY: 2daf7dd9-ac25-4ee2-af3b-68586c8cc111
05-28 18:45:21.555 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 15
05-28 18:45:21.557 DEBUG [AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false]
05-28 18:45:21.561 DEBUG [AbstractService onDestroy]
🔴 BackgroundTaskService destroyed
05-28 18:45:24.407 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:45:24.413 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.849246,72.123852 acc=14 et=+1h23m36s542ms alt=33.76629104057076 vel=4.8427424 bear=280.97897 {Bundle[mParcelledData.dataSize=52]}], age: 49ms, time: 1622207725000
05-28 18:45:24.418 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: 3.2377834
05-28 18:45:24.418 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:45:24.419 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:45:24.419 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 9.555
05-28 18:45:24.419 DEBUG [TSLocationManager locationIsInvalid] Distance from last location: 25.720783, apparent speed: 6.423772
05-28 18:45:24.421 DEBUG [TSLocationManager incrementOdometer] Odometer: 1016.5783
05-28 18:45:24.504 INFO [b persist]
✅ INSERT: 91c97e7a-9812-4b9b-adeb-f49f70856b13
05-28 18:45:24.517 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 1)
╠═════════════════════════════════════════════
05-28 18:45:24.544 DEBUG [AbstractService a]
🎾 BackgroundTaskService [eventCount: 1]
05-28 18:45:24.545 INFO [BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 16
05-28 18:45:24.570 DEBUG [b first]
✅ Locked 1 records
05-28 18:45:24.571 INFO [HttpService a]
🔵 HTTP POST: 91c97e7a-9812-4b9b-adeb-f49f70856b13
05-28 18:45:25.256 INFO [HttpService$i onResponse]
🔵 Response: 200
05-28 18:45:25.261 DEBUG [b destroy]
✅ DESTROY: 91c97e7a-9812-4b9b-adeb-f49f70856b13
05-28 18:45:25.292 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 16
05-28 18:45:25.294 DEBUG [AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false]
05-28 18:45:25.304 DEBUG [AbstractService onDestroy]
🔴 BackgroundTaskService destroyed
05-28 18:45:26.753 INFO [ScheduleEvent onOneShot]
╔═════════════════════════════════════════════
║ ⏰ OneShot event fired: TERMINATE_EVENT
╠═════════════════════════════════════════════
05-28 18:45:26.757 DEBUG [TerminateEvent <init>]
ℹ️ TERMINATE_EVENT ignored (MainActivity is still active).
05-28 18:45:28.381 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:45:28.387 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.849272,72.123636 acc=13 et=+1h23m40s539ms alt=33.907595550763354 vel=5.1199446 bear=274.76578 {Bundle[mParcelledData.dataSize=52]}], age: 26ms, time: 1622207729000
05-28 18:45:28.388 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: 26.920689
05-28 18:45:28.389 DEBUG [TrackingService b]
ℹ️ Force cancel cancel stopTimeout due to apparent movement beyond stoppedAt location
05-28 18:45:28.389 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:45:28.390 DEBUG [TSLocationManager locationIsInvalid] Distance from last location: 22.286768, apparent speed: 5.575874
05-28 18:45:28.391 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 8.666
05-28 18:45:28.392 DEBUG [TSLocationManager incrementOdometer] Odometer: 1038.8651
05-28 18:45:28.393 INFO [TSScheduleManager cancelOneShot]
⏰ Cancel OneShot: STOP_TIMEOUT
05-28 18:45:28.414 INFO [TSScheduleManager oneShot]
⏰ Scheduled OneShot: MOTION_ACTIVITY_CHECK in 63997ms (jobID: -18513055)
05-28 18:45:28.418 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:45:28.438 INFO [b persist]
✅ INSERT: da2e2a60-4705-46db-b18c-f7ef5b1b980c
05-28 18:45:28.452 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 1)
╠═════════════════════════════════════════════
05-28 18:45:28.483 DEBUG [AbstractService a]
🎾 BackgroundTaskService [eventCount: 1]
05-28 18:45:28.484 INFO [BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 17
05-28 18:45:28.502 DEBUG [b first]
✅ Locked 1 records
05-28 18:45:28.503 INFO [HttpService a]
🔵 HTTP POST: da2e2a60-4705-46db-b18c-f7ef5b1b980c
05-28 18:45:29.102 INFO [HttpService$i onResponse]
🔵 Response: 200
05-28 18:45:29.106 DEBUG [b destroy]
✅ DESTROY: da2e2a60-4705-46db-b18c-f7ef5b1b980c
05-28 18:45:29.140 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 17
05-28 18:45:29.143 DEBUG [AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false]
05-28 18:45:29.157 DEBUG [AbstractService onDestroy]
🔴 BackgroundTaskService destroyed
05-28 18:45:32.432 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:45:32.440 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.849279,72.123427 acc=16 et=+1h23m44s573ms alt=34.44330640197301 vel=5.8954754 bear=271.05447 {Bundle[mParcelledData.dataSize=52]}], age: 46ms, time: 1622207733000
05-28 18:45:32.442 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:45:32.444 DEBUG [TSLocationManager locationIsInvalid] Distance from last location: 21.254026, apparent speed: 5.270029
05-28 18:45:32.445 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 8.083
05-28 18:45:32.448 DEBUG [TSLocationManager incrementOdometer] Odometer: 1060.1191
05-28 18:45:32.485 INFO [TSScheduleManager oneShot]
⏰ Scheduled OneShot: STOP_TIMEOUT in 300000ms (jobID: 2059034116)
05-28 18:45:32.486 INFO [b persist]
✅ INSERT: 01778c19-3484-41f9-b44b-3619887d883a
05-28 18:45:32.493 INFO [TSScheduleManager cancelOneShot]
⏰ Cancel OneShot: MOTION_ACTIVITY_CHECK
05-28 18:45:32.506 INFO [TSLocationManager removeLocationUpdates]
🔴 Location-services: OFF
05-28 18:45:32.508 INFO [TSLocationManager requestLocationUpdates]
🎾 Location-services: ON
05-28 18:45:32.509 DEBUG [TSConfig translateDesiredAccuracy] translateDesiredAccuracy (true): -1
05-28 18:45:32.511 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:45:32.526 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 1)
╠═════════════════════════════════════════════
05-28 18:45:32.575 DEBUG [AbstractService a]
🎾 BackgroundTaskService [eventCount: 1]
05-28 18:45:32.576 INFO [BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 18
05-28 18:45:32.590 DEBUG [b first]
✅ Locked 1 records
05-28 18:45:32.590 INFO [HttpService a]
🔵 HTTP POST: 01778c19-3484-41f9-b44b-3619887d883a
05-28 18:45:32.605 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:45:32.608 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.849279,72.123427 acc=16 et=+1h23m44s573ms alt=34.44330640197301 vel=5.8954754 bear=271.05447 {Bundle[mParcelledData.dataSize=52]}], age: 215ms, time: 1622207733000
05-28 18:45:32.609 DEBUG [TrackingService b] Received stoppedAt location
05-28 18:45:32.610 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:45:32.611 INFO [TSLocationManager onLocationResult]
🔵 Re-scaled distanceFilter: 10.0->20.0)
05-28 18:45:32.611 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: -32.674
05-28 18:45:32.616 DEBUG [TSLocationManager onLocationResult]
ℹ️ IGNORED: same as last location
05-28 18:45:32.617 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:45:32.634 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:45:32.636 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:45:32.693 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:45:32.696 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.849279,72.123427 acc=16 et=+1h23m44s573ms alt=34.44330640197301 vel=5.8954754 bear=271.05447 {Bundle[mParcelledData.dataSize=52]}], age: 302ms, time: 1622207733000
05-28 18:45:32.697 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: -32.674
05-28 18:45:32.698 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:45:32.699 DEBUG [TSLocationManager onLocationResult]
ℹ️ IGNORED: same as last location
05-28 18:45:32.703 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:45:32.718 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:45:32.719 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:45:33.674 INFO [HttpService$i onResponse]
🔵 Response: 200
05-28 18:45:33.680 DEBUG [b destroy]
✅ DESTROY: 01778c19-3484-41f9-b44b-3619887d883a
05-28 18:45:33.712 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 18
05-28 18:45:33.717 DEBUG [AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false]
05-28 18:45:33.733 DEBUG [AbstractService onDestroy]
🔴 BackgroundTaskService destroyed
05-28 18:45:36.442 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:45:36.447 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.849296,72.123215 acc=17 et=+1h23m48s549ms alt=34.44837647959472 vel=4.9417334 bear=280.39685 {Bundle[mParcelledData.dataSize=52]}], age: 76ms, time: 1622207737000
05-28 18:45:36.448 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: -11.185316
05-28 18:45:36.449 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:45:36.457 DEBUG [TSLocationManager locationIsInvalid] Distance from last location: 21.697683, apparent speed: 5.457164
05-28 18:45:36.457 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:45:36.457 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 13.0
05-28 18:45:36.458 DEBUG [TSLocationManager incrementOdometer] Odometer: 1081.8168
05-28 18:45:36.520 INFO [b persist]
✅ INSERT: 22077920-9312-4da2-b460-faa8b3f96e65
05-28 18:45:36.534 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 1)
╠═════════════════════════════════════════════
05-28 18:45:36.562 DEBUG [AbstractService a]
🎾 BackgroundTaskService [eventCount: 1]
05-28 18:45:36.566 INFO [BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 19
05-28 18:45:36.597 DEBUG [b first]
✅ Locked 1 records
05-28 18:45:36.598 INFO [HttpService a]
🔵 HTTP POST: 22077920-9312-4da2-b460-faa8b3f96e65
05-28 18:45:37.661 INFO [HttpService$i onResponse]
🔵 Response: 200
05-28 18:45:37.670 DEBUG [b destroy]
✅ DESTROY: 22077920-9312-4da2-b460-faa8b3f96e65
05-28 18:45:37.707 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 19
05-28 18:45:37.714 DEBUG [AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false]
05-28 18:45:37.734 DEBUG [AbstractService onDestroy]
🔴 BackgroundTaskService destroyed
05-28 18:45:41.390 DEBUG [AbstractService a]
🎾 TrackingService [eventCount: 1]
05-28 18:45:41.394 DEBUG [TrackingService b]
╔═════════════════════════════════════════════
║ TrackingService: LocationResult
╠═════════════════════════════════════════════
╟─ 📍 Location[fused 23.849308,72.122996 acc=13 et=+1h23m53s543ms alt=34.63195030765582 vel=5.3580713 bear=279.3884 {Bundle[mParcelledData.dataSize=52]}], age: 30ms, time: 1622207742000
05-28 18:45:41.395 INFO [TrackingService b]
ℹ️ Distance from stoppedAtLocation: 14.875095
05-28 18:45:41.396 DEBUG [AbstractService a] ⚙️︎ finish TrackingService [eventCount: 0, sticky: true]
05-28 18:45:41.396 DEBUG [TSLocationManager onLocationResult]
╔═════════════════════════════════════════════
║ Process LocationResult
╠═════════════════════════════════════════════
05-28 18:45:41.403 DEBUG [TSLocationManager locationIsInvalid] Distance from last location: 22.369402, apparent speed: 4.4801526
05-28 18:45:41.403 DEBUG [TSLocationManager calculateMedianAccuracy] Median accuracy: 13.0
05-28 18:45:41.404 DEBUG [TSLocationManager incrementOdometer] Odometer: 1104.1862
05-28 18:45:41.472 INFO [b persist]
✅ INSERT: d36095aa-19a5-4511-b87c-5be9d5e1a11f
05-28 18:45:41.683 INFO [HttpService flush]
╔═════════════════════════════════════════════
║ HTTP Service (count: 1)
╠═════════════════════════════════════════════
05-28 18:45:41.758 DEBUG [AbstractService a]
🎾 BackgroundTaskService [eventCount: 1]
05-28 18:45:41.759 INFO [BackgroundTaskManager onStartJob] ⏳ startBackgroundTask: 20
05-28 18:45:41.840 DEBUG [b first]
✅ Locked 1 records
05-28 18:45:41.841 INFO [HttpService a]
🔵 HTTP POST: d36095aa-19a5-4511-b87c-5be9d5e1a11f
05-28 18:45:42.651 INFO [HttpService$i onResponse]
🔵 Response: 200
05-28 18:45:42.714 DEBUG [b destroy]
✅ DESTROY: d36095aa-19a5-4511-b87c-5be9d5e1a11f
05-28 18:45:42.765 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 20
05-28 18:45:42.766 DEBUG [AbstractService a] ⚙️︎ finish BackgroundTaskService [eventCount: 0, sticky: false]
05-28 18:45:42.770 DEBUG [AbstractService onDestroy]
🔴 BackgroundTaskService destroyed
About this issue
- Original URL
- State: closed
- Created 3 years ago
- Comments: 35 (12 by maintainers)
@Coala1010 I advise you make a new ticket. In this way I will be lost in my request