Skip to content

[Bug]: Unable to sync the data store within package database #1561

@ranjitmakwana

Description

@ranjitmakwana

Required Reading

  • Confirmed

Plugin Version

flutter_background_geolocation: ^4.16.10

Flutter Doctor

Flutter 3.24.1 • channel stable • https://github.com/flutter/flutter.git
Framework • revision 5874a72aa4 (1 year, 1 month ago) • 2024-08-20 16:46:00 -0500
Engine • revision c9b9d5780d
Tools • Dart 3.5.1 • DevTools 2.37.2

Mobile operating-system(s)

  • Android
  • iOS

Device Manufacturer(s) and Model(s)

Vivo

Device operating-systems(s)

Android 15

What happened?

At certain points, the header for the API call is not getting attached when calling
BackgroundService.sync() . This results in incomplete or failed requests.

Let me know if you need more information on this

Plugin Code and/or Config

bg.Config(
    desiredAccuracy: bg.Config.DESIRED_ACCURACY_NAVIGATION,
    distanceFilter: 0.0,
    disableElasticity: false,
    elasticityMultiplier: 1,
    geofenceProximityRadius: 1000,
    stopAfterElapsedMinutes: -1,
    desiredOdometerAccuracy: 10,
    useSignificantChangesOnly: false,
    locationUpdateInterval: 5000,
    fastestLocationUpdateInterval: 2500,
    deferTime: 20000,
    geofenceModeHighAccuracy: false,
    // stop taking location after this much minutes
    stopTimeout: 10,
    disableMotionActivityUpdates: false,
    disableStopDetection: false,
    allowIdenticalLocations: false,
    motionTriggerDelay: 0,
    url: commonHeartBeatURL,
    autoSync: true,
    disableAutoSyncOnCellular: false,
    autoSyncThreshold: 25,
    batchSync: true,
    maxBatchSize: 50,
    maxRecordsToPersist: -1,
    maxDaysToPersist: 1,
    persistMode: bg.Config.PERSIST_MODE_ALL,
    stopOnTerminate: false,
    startOnBoot: true,
    heartbeatInterval: 120,
    enableHeadless: true,
    notification: bg.Notification(
      priority: bg.Config.NOTIFICATION_PRIORITY_MAX,
      sticky: true,
    ),
    debug: false,
    logLevel: bg.Config.LOG_LEVEL_INFO,
    logMaxDays: 1,
    headers: {
      'Authorization': 'Bearer ${authToken}',
      'X-App-Token': X-APP-TOKEN,
      'app_version': applicationVersion
    },
    extras: {
        deviceId: deviceInfoId
      },
    backgroundPermissionRationale: bg.PermissionRationale(
        title: "Allow App to access this device's location even when the app is closed or not in use.",
        message: "This app collects location data to enable recording your trips to work and calculate distance-travelled.",
        positiveAction: 'Allow',
        negativeAction: 'Cancel'),
    reset: false,
    locationAuthorizationRequest: 'Always',

    /// ios only properties
    pausesLocationUpdatesAutomatically: false,
    preventSuspend: true,
    showsBackgroundLocationIndicator: true,
    stationaryRadius: 10,

    /// If the location suddenly teleports from last location, it will be ignored.(unit is m/s)
    speedJumpFilter: 50,
  );

Relevant log output

✅  Google Play Services: connected (version code:12451000)
09-08 10:28:24.683 INFO [LoggerFacade$a a] 
╔═════════════════════════════════════════════
║ TSLocationManager version: 3.6.7 (442)
╠═════════════════════════════════════════════
╟─ vivo V2351 @ 15 (flutter)
{
  "activityRecognitionInterval": 10000,
  "allowIdenticalLocations": false,
  "authorization": {},
  "autoSync": true,
  "autoSyncThreshold": 25,
  "backgroundPermissionRationale": {
    "title": "Allow Suvidha to access this device's location even when the app is closed or not in use.",
    "message": "This app collects location data to enable recording your trips to work and calculate distance-travelled.",
    "positiveAction": "Allow",
    "negativeAction": "Cancel"
  },
  "batchSync": true,
  "configUrl": "",
  "crashDetector": {
    "enabled": false,
    "accelerometerThresholdHigh": 20,
    "accelerometerThresholdLow": 4.5,
    "gyroscopeThresholdHigh": 20,
    "gyroscopeThresholdLow": 4.5
  },
  "debug": false,
  "deferTime": 20000,
  "desiredAccuracy": -2,
  "desiredOdometerAccuracy": 10,
  "disableAutoSyncOnCellular": false,
  "disableElasticity": false,
  "disableLocationAuthorizationAlert": false,
  "disableMotionActivityUpdates": false,
  "disableProviderChangeRecord": false,
  "disableStopDetection": false,
  "distanceFilter": 0,
  "elasticityMultiplier": 1,
  "enableHeadless": true,
  "enableTimestampMeta": false,
  "extras": {
    "device_id": "AP3A.240905.015.A2"
  },
  "fastestLocationUpdateInterval": 2500,
  "foregroundService": true,
  "geofenceInitialTriggerEntry": true,
  "geofenceModeHighAccuracy": false,
  "geofenceProximityRadius": 1000,
  "geofenceTemplate": "",
  "headers": {
    "Authorization": "Bearer XXXXXX",
    "app_version": "3.0.1",
    "X-App-Token": "XXXXXX-XXXXX-XXXX-XX"
  },
  "headlessJobService": "com.transistorsoft.flutter.backgroundgeolocation.HeadlessTask",
  "heartbeatInterval": 120,
  "httpRootProperty": "location",
  "httpTimeout": 60000,
  "isMoving": false,
  "locationAuthorizationRequest": "Always",
  "locationTemplate": "",
  "locationTimeout": 60,
  "locationUpdateInterval": 5000,
  "locationsOrderDirection": "ASC",
  "logLevel": 3,
  "logMaxDays": 1,
  "maxBatchSize": 50,
  "maxDaysToPersist": 1,
  "maxMonitoredGeofences": 97,
  "maxRecordsToPersist": -1,
  "method": "POST",
  "minimumActivityRecognitionConfidence": 75,
  "motionTriggerDelay": 0,
  "notification": {
    "layout": "",
    "title": "",
    "text": "Location Service activated",
    "color": "",
    "channelName": "TSLocationManager",
    "channelId": "",
    "smallIcon": "",
    "largeIcon": "",
    "priority": 2,
    "sticky": true,
    "strings": {},
    "actions": []
  },
  "params": {},
  "persist": true,
  "persistMode": 2,
  "schedule": [],
  "scheduleUseAlarmManager": false,
  "speedJumpFilter": 50,
  "startOnBoot": true,
  "stationaryRadius": 10,
  "stopAfterElapsedMinutes": -1,
  "stopOnStationary": false,
  "stopOnTerminate": false,
  "stopTimeout": 10,
  "triggerActivities": "in_vehicle, on_bicycle, on_foot, running, walking",
  "url": "https:\XXXXXXXXXXXxx",
  "useSignificantChangesOnly": false,
  "enabled": false,
  "schedulerEnabled": false,
  "trackingMode": 1,
  "odometer": 51.119998931884766,
  "isFirstBoot": false,
  "didLaunchInBackground": false,
  "didDeviceReboot": false
}

09-08 10:28:24.683 INFO [LoggerFacade$a a] 
╔═════════════════════════════════════════════
║ DEVICE SENSORS
╠═════════════════════════════════════════════
╟─ ✅  ACCELEROMETER: {Sensor name="mc34x9_acc", vendor="memsic", version=1, type=1, maxRange=78.453606, resolution=0.0012, power=0.001, minDelay=5000}
╟─ ✅  GYROSCOPE: {Sensor name="pseudo-gyro", vendor="vivo", version=1, type=4, maxRange=34.9063, resolution=0.0011, power=0.001, minDelay=10000}
╟─ ✅  MAGNETOMETER: {Sensor name="mmc5603", vendor="memsic", version=1, type=2, maxRange=4912.0, resolution=0.1, power=0.001, minDelay=10000}
╟─ ✅  SIGNIFICANT_MOTION: {Sensor name="significant", vendor="mtk", version=1, type=17, maxRange=1.0, resolution=1.0, power=0.001, minDelay=-1}
╚═════════════════════════════════════════════
09-08 10:28:24.694 INFO [TSProviderManager startMonitoring] 
  🎾  Start monitoring location-provider changes
09-08 10:28:25.632 INFO [TSLog log] 
  ℹ️  onProviderChange:: 
 2025-09-08 10:28:25.615155
09-08 10:28:26.685 INFO [TSLog log] 
  ℹ️  Dashboard - Active Trip || Attendance:: SharedPreference - TripStatus - false, AttendanceStatus - false
09-08 10:28:26.686 INFO [TSLog log] 
  ℹ️  Dashboard - Active Trip || Attendance:: Using API - TripStatus - false, AttendanceStatus - false
09-08 10:28:26.686 INFO [TSLog log] 
  ℹ️  Dashboard - NO Active Trip || Attendance - CheckInStatus && TripStatus
09-08 10:28:26.687 INFO [TSLog log] 
  ℹ️  Dashboard - NO Active Trip || Attendance : BackgroundService Status- false}
09-08 10:28:43.729 WARN [BackgroundGeolocationModule ready] 
  ⚠️  #ready already called.  Config ignored since reset:false
09-08 10:28:44.480 INFO [TSLog log] 
  ℹ️  Dashboard - Active Trip || Attendance:: SharedPreference - TripStatus - false, AttendanceStatus - false
09-08 10:28:44.481 INFO [TSLog log] 
  ℹ️  Dashboard - Active Trip || Attendance:: Using API - TripStatus - false, AttendanceStatus - false
09-08 10:28:44.481 INFO [TSLog log] 
  ℹ️  Dashboard - NO Active Trip || Attendance - CheckInStatus && TripStatus
09-08 10:28:44.483 INFO [TSLog log] 
  ℹ️  Dashboard - NO Active Trip || Attendance : BackgroundService Status- false}
09-08 10:29:03.981 INFO [TSLog log] 
  ℹ️  Trigger:: AttendanceCheckIn
09-08 10:29:03.995 INFO [TSLog log] 
  ℹ️  tripStarted --> false, checkInStatus --> true
09-08 10:29:03.995 INFO [TSLog log] 
  ℹ️  BackgroundService - ReStart -  CheckInStatus && TripStatus
09-08 10:29:04.011 INFO [ActivityRecognitionService stop] 
  🔴  Stop motion-activity updates
09-08 10:29:04.014 INFO [HeartbeatService stop] 
  🔴  Stop heartbeat
09-08 10:29:04.029 INFO [TSScheduleManager stop] 
  🔴  Scheduler OFF
09-08 10:29:04.037 INFO [HttpService flush] 
╔═════════════════════════════════════════════
║ HTTP Service (count: 0)
╠═════════════════════════════════════════════

09-08 10:29:04.039 INFO [TSLog log] 
  ℹ️  onEnabledChange:true : 
 2025-09-08 10:29:04.038901
09-08 10:29:04.039 INFO [TSLog log] 
  ℹ️  onEnabledChange:true : 
 2025-09-08 10:29:04.039071
09-08 10:29:04.040 INFO [TSGeofenceManager start] 
  🎾  Start monitoring geofences
09-08 10:29:04.051 INFO [ActivityRecognitionService start] 
  🎾  Start motion-activity updates
09-08 10:29:04.055 INFO [TSLog log] 
  ℹ️  onConnectivityChange:: 
 2025-09-08 10:29:04.055315
09-08 10:29:04.056 INFO [TSLog log] 
  ℹ️  onConnectivityChange:: 
 2025-09-08 10:29:04.055443
09-08 10:29:04.056 INFO [HeartbeatService start] 
  🎾  Start heartbeat (120s)
09-08 10:29:04.058 INFO [TSScheduleManager oneShot] 
  ⏰ Scheduled OneShot: HEARTBEAT in 120000ms (jobID: -1307475748)
09-08 10:29:04.063 INFO [TrackingService changePace] 
  🔵  setPace: falsefalse
09-08 10:29:04.068 INFO [HeartbeatService stop] 
  🔴  Stop heartbeat
09-08 10:29:04.069 INFO [TSScheduleManager cancelOneShot] 
  ⏰ Cancel OneShot: HEARTBEAT
09-08 10:29:04.069 INFO [TSLocationManager a] 
╔═════════════════════════════════════════════
║ motionchange LocationResult: 1 (17531ms old)
╠═════════════════════════════════════════════
╟─ 📍  Location[fused *** hAcc=19.464 et=+14d21h52m37s152ms alt=67.30000305175781 vAcc=1.0], time: 1757307526538

09-08 10:29:04.073 INFO [TSLocationManager onSingleLocationResult] 
  🔵  Acquired motionchange position, isMoving: true
09-08 10:29:04.077 INFO [TrackingService changePace] 
  🔵  setPace: falsetrue
09-08 10:29:04.079 INFO [TSLocationManager requestLocationUpdates] 
  🎾  Location-services: ON
09-08 10:29:04.083 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 69317d71-b162-431c-a171-b7c885466bb1
09-08 10:29:04.088 INFO [HttpService flush] 
╔═════════════════════════════════════════════
║ HTTP Service (count: 1)
╠═════════════════════════════════════════════

09-08 10:29:04.096 INFO [TrackingService k] 
╔═════════════════════════════════════════════
║ TrackingService motionchange: true
╠═════════════════════════════════════════════

09-08 10:29:04.118 INFO [TSLocationManager a] 
╔═════════════════════════════════════════════
║ motionchange LocationResult: 2 (17580ms old)
╠═════════════════════════════════════════════
╟─ 📍  Location[fused *** hAcc=19.464 et=+14d21h52m37s152ms alt=67.30000305175781 vAcc=1.0], time: 1757307526538

09-08 10:29:04.119 INFO [TSLocationManager onSingleLocationResult] 
  🔵  Acquired motionchange position, isMoving: true
09-08 10:29:04.127 INFO [TSLocationManager d] 
  🔴  Location-services: OFF
09-08 10:29:04.128 INFO [TSLocationManager requestLocationUpdates] 
  🎾  Location-services: ON
09-08 10:29:04.130 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: b085f0cc-6775-406b-b188-20e72fab13db
09-08 10:29:04.133 INFO [HttpService flush] 
  ℹ️  HttpService is busy
09-08 10:29:04.136 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:29:04.120998 : 26.7819845,81.0446089
09-08 10:29:04.136 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:29:04.121900 : 26.7819845,81.0446089
09-08 10:29:04.137 INFO [TSLog log] 
  ℹ️  onMotionChange::
 2025-09-08 10:29:04.122494
09-08 10:29:04.138 INFO [TSLog log] 
  ℹ️  onMotionChange::
 2025-09-08 10:29:04.122626
09-08 10:29:04.145 INFO [ActivityRecognitionService start] 
  🎾  Start motion-activity updates
09-08 10:29:04.147 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:29:04.140104 : 26.7819845,81.0446089
09-08 10:29:04.148 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:29:04.140545 : 26.7819845,81.0446089
09-08 10:29:04.148 INFO [TSLog log] 
  ℹ️  onMotionChange::
 2025-09-08 10:29:04.140931
09-08 10:29:04.149 INFO [TSLog log] 
  ℹ️  onMotionChange::
 2025-09-08 10:29:04.141027
09-08 10:29:04.157 INFO [TrackingService k] 
╔═════════════════════════════════════════════
║ TrackingService motionchange: true
╠═════════════════════════════════════════════

09-08 10:29:04.172 INFO [BackgroundTaskManager$Task start] ⏳ startBackgroundTask: 1
09-08 10:29:04.179 INFO [HttpService a] 
  🔵  HTTP POST batch (2)
09-08 10:29:04.206 WARN [BackgroundGeolocationModule ready] 
  ⚠️  #ready already called.  Config ignored since reset:false
09-08 10:29:04.488 INFO [HttpService$f onResponse] 
  🔵  Response: 200
09-08 10:29:04.489 INFO [TSLog log] 
  ℹ️  onHttp: true - {"message":"Location data saved successfully."}: 
 2025-09-08 10:29:04.489316
09-08 10:29:04.490 INFO [TSLog log] 
  ℹ️  onHttp: true - {"message":"Location data saved successfully."}: 
 2025-09-08 10:29:04.489418
09-08 10:29:04.490 INFO [TSLog log] 
  ℹ️  onHttp: true - {"message":"Location data saved successfully."}: 
 2025-09-08 10:29:04.489467
09-08 10:29:04.500 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 1
09-08 10:29:04.892 INFO [TSLog log] 
  ℹ️  Dashboard - Active Trip || Attendance:: SharedPreference - TripStatus - false, AttendanceStatus - true
09-08 10:29:04.893 INFO [TSLog log] 
  ℹ️  Dashboard - Active Trip || Attendance:: Using API - TripStatus - false, AttendanceStatus - true
09-08 10:29:04.894 INFO [TSLog log] 
  ℹ️  Dashboard - BackgroundService Status - true}
09-08 10:29:04.965 INFO [TrackingService b] 
  ℹ️  Location availability: false
09-08 10:29:05.056 INFO [HttpService flush] 
╔═════════════════════════════════════════════
║ HTTP Service (count: 0)
╠═════════════════════════════════════════════

09-08 10:29:08.685 INFO [TSScheduleManager oneShot] 
  ⏰ Scheduled OneShot: TERMINATE_EVENT in 10000ms (jobID: -1708771588)
09-08 10:29:08.735 INFO [TrackingService b] 
  ℹ️  Location availability: true
09-08 10:29:09.001 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: a1b41d9c-686f-4139-9722-89b01c3658ae
09-08 10:29:09.016 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:29:09.015452 : 26.7831683,81.0434967
09-08 10:29:09.018 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:29:09.015864 : 26.7831683,81.0434967
09-08 10:29:09.019 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:29:09.016068 : 26.7831683,81.0434967
09-08 10:29:13.208 INFO [HeartbeatService stop] 
  🔴  Stop heartbeat
09-08 10:29:13.209 INFO [TSLog log] 
  ℹ️  onActivityChange:in_vehicle - 100: 
 2025-09-08 10:29:13.208894
09-08 10:29:13.211 INFO [TSLog log] 
  ℹ️  onActivityChange:in_vehicle - 100: 
 2025-09-08 10:29:13.209447
09-08 10:29:13.212 INFO [TSLog log] 
  ℹ️  onActivityChange:in_vehicle - 100: 
 2025-09-08 10:29:13.209721
09-08 10:29:13.219 INFO [TrackingService changePace] 
  🔵  setPace: truetrue
09-08 10:29:13.220 INFO [ActivityRecognitionService a] 
╔═════════════════════════════════════════════
║ Motion Transition Result
╠═════════════════════════════════════════════
╟─ 🎾  ENTER: in_vehicle
╚═════════════════════════════════════════════
09-08 10:29:13.231 INFO [TrackingService k] 
╔═════════════════════════════════════════════
║ TrackingService motionchange: true
╠═════════════════════════════════════════════

09-08 10:29:13.232 INFO [TSLocationManager a] 
╔═════════════════════════════════════════════
║ motionchange LocationResult: 3 (5021ms old)
╠═════════════════════════════════════════════
╟─ 📍  Location[fused *** hAcc=6.8 et=+14d21h52m58s825ms alt=67.30000305175781 vAcc=1.2167308 vel=5.8045225 sAcc=1.7 bear=307.0 bAcc=10.7], time: 1757307548210

09-08 10:29:13.234 INFO [TSLocationManager onSingleLocationResult] 
  🔵  Acquired motionchange position, isMoving: true
09-08 10:29:13.240 INFO [TSLocationManager d] 
  🔴  Location-services: OFF
09-08 10:29:13.243 INFO [TSLocationManager requestLocationUpdates] 
  🎾  Location-services: ON
09-08 10:29:13.249 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 2e4b7007-a776-422e-af13-be027fb69b3d
09-08 10:29:13.249 INFO [ActivityRecognitionService start] 
  🎾  Start motion-activity updates
09-08 10:29:13.252 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:29:13.249223 : 26.7831683,81.0434967
09-08 10:29:13.253 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:29:13.249483 : 26.7831683,81.0434967
09-08 10:29:13.253 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:29:13.249628 : 26.7831683,81.0434967
09-08 10:29:13.254 INFO [TSLog log] 
  ℹ️  onMotionChange::
 2025-09-08 10:29:13.250422
09-08 10:29:13.254 INFO [TSLog log] 
  ℹ️  onMotionChange::
 2025-09-08 10:29:13.251401
09-08 10:29:13.255 INFO [TSLog log] 
  ℹ️  onMotionChange::
 2025-09-08 10:29:13.251564
09-08 10:29:13.309 INFO [HttpService flush] 
╔═════════════════════════════════════════════
║ HTTP Service (count: 2)
╠═════════════════════════════════════════════

09-08 10:29:13.395 INFO [BackgroundTaskManager$Task start] ⏳ startBackgroundTask: 2
09-08 10:29:13.400 INFO [HttpService a] 
  🔵  HTTP POST batch (2)
09-08 10:29:13.572 INFO [HttpService$f onResponse] 
  🔵  Response: 200
09-08 10:29:13.575 INFO [TSLog log] 
  ℹ️  onHttp: true - {"message":"Location data saved successfully."}: 
 2025-09-08 10:29:13.574432
09-08 10:29:13.576 INFO [TSLog log] 
  ℹ️  onHttp: true - {"message":"Location data saved successfully."}: 
 2025-09-08 10:29:13.575098
09-08 10:29:13.577 INFO [TSLog log] 
  ℹ️  onHttp: true - {"message":"Location data saved successfully."}: 
 2025-09-08 10:29:13.575392
09-08 10:29:13.580 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 2
09-08 10:29:13.759 INFO [TSScheduleManager oneShot] 
  ⏰ Scheduled OneShot: MOTION_ACTIVITY_CHECK in 65050ms (jobID: -18513055)
09-08 10:29:13.770 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:29:13.769774 : 26.7831683,81.0434967
09-08 10:29:13.771 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:29:13.770343 : 26.7831683,81.0434967
09-08 10:29:13.772 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:29:13.770741 : 26.7831683,81.0434967
09-08 10:29:13.783 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 4341acc5-47c0-46f5-85d5-a6b5900c0cab
09-08 10:29:13.784 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:29:13.783269 : 26.78344,81.0429917
09-08 10:29:13.785 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:29:13.784239 : 26.78344,81.0429917
09-08 10:29:13.786 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:29:13.784570 : 26.78344,81.0429917
09-08 10:29:13.789 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: a6a41235-cf3d-4972-bac7-2c271bd21315
09-08 10:29:27.044 INFO [ActivityRecognitionService a] 
╔═════════════════════════════════════════════
║ Motion Transition Result
╠═════════════════════════════════════════════
╟─ 🎾  ENTER: in_vehicle
╚═════════════════════════════════════════════
09-08 10:29:27.045 INFO [TSLog log] 
  ℹ️  onActivityChange:in_vehicle - 100: 
 2025-09-08 10:29:27.044821
09-08 10:29:27.046 INFO [TSLog log] 
  ℹ️  onActivityChange:in_vehicle - 100: 
 2025-09-08 10:29:27.045431
09-08 10:29:27.047 INFO [TSLog log] 
  ℹ️  onActivityChange:in_vehicle - 100: 
 2025-09-08 10:29:27.045728
09-08 10:29:33.345 INFO [TrackingService b] 
  ℹ️  Location availability: false
09-08 10:29:33.644 INFO [TrackingService b] 
  ℹ️  Location availability: true
09-08 10:29:33.683 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:29:33.682662 : 26.78344,81.0429917
09-08 10:29:33.684 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:29:33.683397 : 26.78344,81.0429917
09-08 10:29:33.685 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:29:33.683613 : 26.78344,81.0429917
09-08 10:29:33.688 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:29:33.688492 : 26.784025,81.04187
09-08 10:29:33.689 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:29:33.688867 : 26.784025,81.04187
09-08 10:29:33.690 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:29:33.689078 : 26.784025,81.04187
09-08 10:29:33.694 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:29:33.694458 : 26.784025,81.04187
09-08 10:29:33.695 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:29:33.694821 : 26.784025,81.04187
09-08 10:29:33.696 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:29:33.695118 : 26.784025,81.04187
09-08 10:29:33.697 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:29:33.697514 : 26.7841183,81.0415967
09-08 10:29:33.697 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: ab02ef5b-5d51-484d-9950-906b2b0ca480
09-08 10:29:33.698 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:29:33.697862 : 26.7841183,81.0415967
09-08 10:29:33.698 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:29:33.697998 : 26.7841183,81.0415967
09-08 10:29:33.702 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 5efac8c0-1839-4a14-b12a-d5a4d62bbc51
09-08 10:29:33.707 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 9a924a9b-aba0-4b3c-99e7-41830b89507f
09-08 10:29:33.712 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: ff7f2f4b-917a-4dea-8993-f3102e2e7b96
09-08 10:29:53.507 INFO [TrackingService b] 
  ℹ️  Location availability: false
09-08 10:29:58.795 INFO [TrackingService b] 
  ℹ️  Location availability: true
09-08 10:29:58.850 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:29:58.849376 : 26.784205,81.0412383
09-08 10:29:58.850 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:29:58.849921 : 26.784205,81.0412383
09-08 10:29:58.851 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:29:58.850149 : 26.784205,81.0412383
09-08 10:29:58.858 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:29:58.857683 : 26.7842983,81.0407867
09-08 10:29:58.859 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:29:58.858248 : 26.7842983,81.0407867
09-08 10:29:58.860 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:29:58.858512 : 26.7842983,81.0407867
09-08 10:29:58.865 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:29:58.865106 : 26.7843867,81.0404283
09-08 10:29:58.866 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:29:58.865596 : 26.7843867,81.0404283
09-08 10:29:58.866 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:29:58.865844 : 26.7843867,81.0404283
09-08 10:29:58.878 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:29:58.878011 : 26.7844367,81.040005
09-08 10:29:58.879 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:29:58.878531 : 26.7844367,81.040005
09-08 10:29:58.880 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:29:58.878781 : 26.7844367,81.040005
09-08 10:29:58.888 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 4d70e5eb-93e8-4c12-a8d5-e1bf8258856d
09-08 10:29:58.888 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:29:58.887985 : 26.7845,81.0395117
09-08 10:29:58.889 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:29:58.888449 : 26.7845,81.0395117
09-08 10:29:58.895 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: dca927b0-8df0-479b-9400-16deafa0b569
09-08 10:29:58.903 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: ebcd7ed8-9f99-4cb4-aedb-6154695cac2d
09-08 10:29:58.913 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: e6a977a3-05d2-47d6-9235-91ff72f5df7a
09-08 10:29:58.919 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:29:58.888666 : 26.7845,81.0395117
09-08 10:29:58.922 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:29:58.921807 : 26.7845,81.0395117
09-08 10:29:58.922 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 46b37739-4207-41cb-a66f-4fc8a54aa8d7
09-08 10:29:58.923 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:29:58.922141 : 26.7845,81.0395117
09-08 10:29:58.923 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:29:58.922303 : 26.7845,81.0395117
09-08 10:29:58.927 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 300df1f4-2da2-4962-97e3-7aa45d3e9ac2
09-08 10:30:18.800 INFO [TrackingService b] 
  ℹ️  Location availability: false
09-08 10:30:24.018 INFO [TrackingService b] 
  ℹ️  Location availability: true
09-08 10:30:24.075 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:30:24.074987 : 26.7845733,81.0389733
09-08 10:30:24.076 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:30:24.075420 : 26.7845733,81.0389733
09-08 10:30:24.077 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:30:24.075585 : 26.7845733,81.0389733
09-08 10:30:24.080 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:30:24.079850 : 26.78467,81.0384133
09-08 10:30:24.082 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:30:24.080065 : 26.78467,81.0384133
09-08 10:30:24.083 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:30:24.080206 : 26.78467,81.0384133
09-08 10:30:24.086 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:30:24.085463 : 26.78478,81.037805
09-08 10:30:24.087 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:30:24.085686 : 26.78478,81.037805
09-08 10:30:24.088 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:30:24.085804 : 26.78478,81.037805
09-08 10:30:24.090 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:30:24.090097 : 26.78488,81.0372317
09-08 10:30:24.091 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:30:24.090323 : 26.78488,81.0372317
09-08 10:30:24.092 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:30:24.090444 : 26.78488,81.0372317
09-08 10:30:24.094 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:30:24.094477 : 26.78499,81.03661
09-08 10:30:24.095 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 763d79ac-d9cb-42a2-a62e-53e3e63eb385
09-08 10:30:24.095 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:30:24.094837 : 26.78499,81.03661
09-08 10:30:24.096 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:30:24.095141 : 26.78499,81.03661
09-08 10:30:24.100 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 1b9571f4-fb2b-493e-a121-c6c4f998eedd
09-08 10:30:24.105 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: bd6a7a5a-1afb-4404-8be5-ca8e3e4284fc
09-08 10:30:24.109 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 4707b686-f911-467f-9ed4-7ae39f44a993
09-08 10:30:24.114 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 486f5994-21b2-4789-a6eb-4fe416e48a2d
09-08 10:30:24.371 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 318695fa-d50a-4087-8db3-54a4583028a1
09-08 10:30:24.371 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:30:24.371326 : 26.78499,81.03661
09-08 10:30:24.373 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:30:24.371671 : 26.78499,81.03661
09-08 10:30:24.374 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:30:24.371853 : 26.78499,81.03661
09-08 10:30:44.020 INFO [TrackingService b] 
  ℹ️  Location availability: false
09-08 10:30:49.487 INFO [TrackingService b] 
  ℹ️  Location availability: true
09-08 10:30:49.546 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:30:49.545858 : 26.7851117,81.0360283
09-08 10:30:49.547 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:30:49.546351 : 26.7851117,81.0360283
09-08 10:30:49.548 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:30:49.546642 : 26.7851117,81.0360283
09-08 10:30:49.552 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:30:49.551623 : 26.7852133,81.035505
09-08 10:30:49.553 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:30:49.552092 : 26.7852133,81.035505
09-08 10:30:49.554 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:30:49.552297 : 26.7852133,81.035505
09-08 10:30:49.573 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: a0c9ee48-13b7-471a-a7ba-fdc6dacd7a95
09-08 10:30:49.588 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: d84cbdf5-93b5-4a1f-8348-9ee3ce1d7cba
09-08 10:30:49.592 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 8d07f3b9-f5b9-4699-bd04-831a9f375a7f
09-08 10:30:49.593 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:30:49.593246 : 26.785305,81.035045
09-08 10:30:49.594 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:30:49.593582 : 26.785305,81.035045
09-08 10:30:49.594 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:30:49.593751 : 26.785305,81.035045
09-08 10:30:49.596 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:30:49.595721 : 26.7853783,81.0346683
09-08 10:30:49.596 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:30:49.596277 : 26.7853783,81.0346683
09-08 10:30:49.597 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:30:49.596673 : 26.7853783,81.0346683
09-08 10:30:49.598 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:30:49.597322 : 26.785455,81.0342833
09-08 10:30:49.598 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:30:49.597577 : 26.785455,81.0342833
09-08 10:30:49.599 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:30:49.597707 : 26.785455,81.0342833
09-08 10:30:49.599 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:30:49.598704 : 26.7855267,81.033875
09-08 10:30:49.600 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:30:49.599061 : 26.7855267,81.033875
09-08 10:30:49.601 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:30:49.599258 : 26.7855267,81.033875
09-08 10:30:49.601 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:30:49.599871 : 26.7855467,81.0337333
09-08 10:30:49.601 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:30:49.600048 : 26.7855467,81.0337333
09-08 10:30:49.602 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:30:49.600139 : 26.7855467,81.0337333
09-08 10:30:49.602 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 04a3c9c6-9361-456f-a543-4c889ddb1eee
09-08 10:30:49.608 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: bfa60a50-9a47-4772-ad56-9ef36f9fac7b
09-08 10:30:49.613 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: eca8c9f0-5153-4f07-b219-4d3bfcfcb5c1
09-08 10:30:49.617 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: aaa1241b-db7f-438f-bd61-dbdace7f5901
09-08 10:30:49.623 INFO [HttpService flush] 
╔═════════════════════════════════════════════
║ HTTP Service (count: 25)
╠═════════════════════════════════════════════

09-08 10:30:49.671 INFO [BackgroundTaskManager$Task start] ⏳ startBackgroundTask: 3
09-08 10:30:49.679 INFO [HttpService a] 
  🔵  HTTP POST batch (25)
09-08 10:30:50.226 INFO [HttpService$f onResponse] 
  🔵  Response: 200
09-08 10:30:50.229 INFO [TSLog log] 
  ℹ️  onHttp: true - {"message":"Location data saved successfully."}: 
 2025-09-08 10:30:50.228706
09-08 10:30:50.229 INFO [TSLog log] 
  ℹ️  onHttp: true - {"message":"Location data saved successfully."}: 
 2025-09-08 10:30:50.229044
09-08 10:30:50.230 INFO [TSLog log] 
  ℹ️  onHttp: true - {"message":"Location data saved successfully."}: 
 2025-09-08 10:30:50.229198
09-08 10:30:50.235 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 3
09-08 10:31:09.461 INFO [TrackingService b] 
  ℹ️  Location availability: false
09-08 10:31:10.369 INFO [ScheduleEvent a] 
╔═════════════════════════════════════════════
║ ⏰ OneShot event fired: TERMINATE_EVENT
╠═════════════════════════════════════════════

09-08 10:31:10.375 INFO [ScheduleEvent a] 
╔═════════════════════════════════════════════
║ ⏰ OneShot event fired: MOTION_ACTIVITY_CHECK
╠═════════════════════════════════════════════

09-08 10:31:10.377 INFO [ActivityRecognitionService start] 
  🎾  Start motion-activity updates
09-08 10:31:13.558 INFO [TrackingService b] 
  ℹ️  Location availability: true
09-08 10:31:13.598 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:31:13.598262 : 26.78579,81.0323867
09-08 10:31:13.600 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:31:13.598762 : 26.78579,81.0323867
09-08 10:31:13.601 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:31:13.599207 : 26.78579,81.0323867
09-08 10:31:13.604 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:31:13.603891 : 26.78579,81.0323867
09-08 10:31:13.605 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:31:13.604352 : 26.78579,81.0323867
09-08 10:31:13.606 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:31:13.604565 : 26.78579,81.0323867
09-08 10:31:13.608 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:31:13.608162 : 26.78604,81.0311217
09-08 10:31:13.609 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:31:13.608363 : 26.78604,81.0311217
09-08 10:31:13.610 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:31:13.608485 : 26.78604,81.0311217
09-08 10:31:13.612 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:31:13.611838 : 26.78604,81.0311217
09-08 10:31:13.613 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:31:13.612060 : 26.78604,81.0311217
09-08 10:31:13.613 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:31:13.612203 : 26.78604,81.0311217
09-08 10:31:13.615 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 030fc58a-bd18-41d6-a346-8fa99a623850
09-08 10:31:13.616 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:31:13.615678 : 26.7861133,81.03071
09-08 10:31:13.617 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:31:13.616080 : 26.7861133,81.03071
09-08 10:31:13.617 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:31:13.616228 : 26.7861133,81.03071
09-08 10:31:13.619 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 3d5df1d7-f692-466b-8c64-91acb56de48d
09-08 10:31:13.624 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 389f8a88-da91-4955-94c4-87eff74fbb96
09-08 10:31:13.636 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: ae7fbe7e-34b5-43df-a922-2ac778b8c530
09-08 10:31:13.641 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 13fe7d7a-d387-447e-93ff-589ffff38ead
09-08 10:31:17.042 INFO [ActivityRecognitionService a] 
╔═════════════════════════════════════════════
║ Motion Transition Result
╠═════════════════════════════════════════════
╟─ 🎾  ENTER: in_vehicle
╚═════════════════════════════════════════════
09-08 10:31:17.043 INFO [TSLog log] 
  ℹ️  onActivityChange:in_vehicle - 100: 
 2025-09-08 10:31:17.042546
09-08 10:31:17.044 INFO [TSLog log] 
  ℹ️  onActivityChange:in_vehicle - 100: 
 2025-09-08 10:31:17.043050
09-08 10:31:17.045 INFO [TSLog log] 
  ℹ️  onActivityChange:in_vehicle - 100: 
 2025-09-08 10:31:17.043252
09-08 10:31:33.497 INFO [TrackingService b] 
  ℹ️  Location availability: false
09-08 10:31:38.703 INFO [TrackingService b] 
  ℹ️  Location availability: true
09-08 10:31:38.757 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:31:38.757419 : 26.7862517,81.03004
09-08 10:31:38.759 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:31:38.757858 : 26.7862517,81.03004
09-08 10:31:38.760 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:31:38.758071 : 26.7862517,81.03004
09-08 10:31:38.765 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:31:38.765181 : 26.78635,81.0294917
09-08 10:31:38.767 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:31:38.765587 : 26.78635,81.0294917
09-08 10:31:38.768 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:31:38.765773 : 26.78635,81.0294917
09-08 10:31:38.770 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:31:38.770369 : 26.7865283,81.02891
09-08 10:31:38.772 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:31:38.770642 : 26.7865283,81.02891
09-08 10:31:38.773 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:31:38.770816 : 26.7865283,81.02891
09-08 10:31:38.776 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 0f17ffd1-a38a-4588-8727-f908a0e8cf5b
09-08 10:31:38.778 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:31:38.778412 : 26.786805,81.02828
09-08 10:31:38.779 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:31:38.778691 : 26.786805,81.02828
09-08 10:31:38.780 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:31:38.778835 : 26.786805,81.02828
09-08 10:31:38.784 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 96685ace-11d7-4e3d-91e9-5d678af6ab80
09-08 10:31:38.789 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 544cec01-e073-4946-8c27-63e8bd207973
09-08 10:31:38.793 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 09fcfe18-8349-4a48-8581-2a1af2c3214d
09-08 10:31:40.930 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:31:40.930086 : 26.786805,81.02828
09-08 10:31:40.930 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: c5b1d68b-fbf9-4208-8baf-cc47f74b8255
09-08 10:31:40.931 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:31:40.930350 : 26.786805,81.02828
09-08 10:31:40.932 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:31:40.930462 : 26.786805,81.02828
09-08 10:32:00.526 INFO [TrackingService b] 
  ℹ️  Location availability: false
09-08 10:32:06.043 INFO [TrackingService b] 
  ℹ️  Location availability: true
09-08 10:32:06.089 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:32:06.088815 : 26.7876,81.0270033
09-08 10:32:06.090 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:32:06.089717 : 26.7876,81.0270033
09-08 10:32:06.092 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:32:06.089932 : 26.7876,81.0270033
09-08 10:32:06.095 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:32:06.094548 : 26.7880017,81.0263333
09-08 10:32:06.096 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:32:06.095091 : 26.7880017,81.0263333
09-08 10:32:06.097 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:32:06.095336 : 26.7880017,81.0263333
09-08 10:32:06.113 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:32:06.112956 : 26.7883767,81.0257033
09-08 10:32:06.114 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:32:06.114144 : 26.7883767,81.0257033
09-08 10:32:06.116 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:32:06.114531 : 26.7883767,81.0257033
09-08 10:32:06.121 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:32:06.120774 : 26.78873,81.0250817
09-08 10:32:06.123 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:32:06.122192 : 26.78873,81.0250817
09-08 10:32:06.124 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:32:06.123880 : 26.78873,81.0250817
09-08 10:32:06.127 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: cbc71905-9a40-4395-a649-5efd796f47fd
09-08 10:32:06.132 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:32:06.131404 : 26.7890433,81.02443
09-08 10:32:06.133 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 3fb5f664-58a5-4657-83e2-08860ed34290
09-08 10:32:06.133 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:32:06.132001 : 26.7890433,81.02443
09-08 10:32:06.134 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:32:06.132191 : 26.7890433,81.02443
09-08 10:32:06.140 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 6bcedba1-8a84-4e49-a645-8084b3125aef
09-08 10:32:06.148 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: ed0a3aae-c369-4746-8928-7250afbafd2a
09-08 10:32:06.153 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 8ccea7a4-8b9f-41a5-901b-5b72966eca54
09-08 10:32:26.052 INFO [TrackingService b] 
  ℹ️  Location availability: false
09-08 10:32:31.252 INFO [TrackingService b] 
  ℹ️  Location availability: true
09-08 10:32:31.298 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:32:31.297203 : 26.789345,81.023835
09-08 10:32:31.299 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:32:31.297958 : 26.789345,81.023835
09-08 10:32:31.300 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:32:31.298325 : 26.789345,81.023835
09-08 10:32:31.303 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:32:31.302710 : 26.7896617,81.0232433
09-08 10:32:31.304 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:32:31.303306 : 26.7896617,81.0232433
09-08 10:32:31.305 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:32:31.303599 : 26.7896617,81.0232433
09-08 10:32:31.307 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:32:31.307446 : 26.7899867,81.0225833
09-08 10:32:31.309 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:32:31.307656 : 26.7899867,81.0225833
09-08 10:32:31.310 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:32:31.307790 : 26.7899867,81.0225833
09-08 10:32:31.311 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:32:31.309630 : 26.79029,81.021995
09-08 10:32:31.312 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:32:31.309810 : 26.79029,81.021995
09-08 10:32:31.313 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:32:31.309895 : 26.79029,81.021995
09-08 10:32:31.314 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: b48670ac-1a41-40d4-997f-12bb666cca8a
09-08 10:32:31.314 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:32:31.314527 : 26.7905183,81.0215483
09-08 10:32:31.315 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:32:31.314726 : 26.7905183,81.0215483
09-08 10:32:31.316 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:32:31.314821 : 26.7905183,81.0215483
09-08 10:32:31.320 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 130b4dba-665c-4716-bc43-8f96e8b84f95
09-08 10:32:31.325 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 9bfc4f53-2117-4173-a6c1-138dde07761d
09-08 10:32:31.331 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 1bfc1ed7-bc89-4e73-8f45-0b3f83768a3f
09-08 10:32:31.338 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 8bdeaee0-bb47-4952-b73a-79b21f587160
09-08 10:32:51.252 INFO [TrackingService b] 
  ℹ️  Location availability: false
09-08 10:32:56.756 INFO [TrackingService b] 
  ℹ️  Location availability: true
09-08 10:32:56.800 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:32:56.799711 : 26.7906033,81.0213533
09-08 10:32:56.801 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:32:56.800079 : 26.7906033,81.0213533
09-08 10:32:56.802 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:32:56.800226 : 26.7906033,81.0213533
09-08 10:32:56.805 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:32:56.805282 : 26.7906567,81.0212217
09-08 10:32:56.806 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:32:56.805685 : 26.7906567,81.0212217
09-08 10:32:56.807 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:32:56.805821 : 26.7906567,81.0212217
09-08 10:32:56.811 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:32:56.811212 : 26.7906933,81.0211267
09-08 10:32:56.813 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:32:56.812726 : 26.7906933,81.0211267
09-08 10:32:56.814 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:32:56.813084 : 26.7906933,81.0211267
09-08 10:32:56.816 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:32:56.816482 : 26.7907217,81.0210583
09-08 10:32:56.817 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:32:56.816784 : 26.7907217,81.0210583
09-08 10:32:56.818 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:32:56.816947 : 26.7907217,81.0210583
09-08 10:32:56.822 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 7f506198-8f2c-4aa3-ab38-5357be4acac3
09-08 10:32:56.822 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:32:56.822231 : 26.790825,81.0208617
09-08 10:32:56.823 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:32:56.822513 : 26.790825,81.0208617
09-08 10:32:56.824 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:32:56.822681 : 26.790825,81.0208617
09-08 10:32:56.827 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: fa952e51-662a-4768-8ae6-75e6d0752e45
09-08 10:32:56.831 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 44e78a28-60c9-4479-979d-36b0bdaabedf
09-08 10:32:56.835 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 65104e2f-14c6-448d-84aa-63ddc525c021
09-08 10:32:56.839 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 2335403e-b447-44f0-8a46-be3d06b4415e
09-08 10:32:56.846 INFO [HttpService flush] 
╔═════════════════════════════════════════════
║ HTTP Service (count: 25)
╠═════════════════════════════════════════════

09-08 10:32:56.893 INFO [BackgroundTaskManager$Task start] ⏳ startBackgroundTask: 4
09-08 10:32:56.903 INFO [HttpService a] 
  🔵  HTTP POST batch (25)
09-08 10:32:57.331 INFO [HttpService$f onResponse] 
  🔵  Response: 200
09-08 10:32:57.334 INFO [TSLog log] 
  ℹ️  onHttp: true - {"message":"Location data saved successfully."}: 
 2025-09-08 10:32:57.333497
09-08 10:32:57.335 INFO [TSLog log] 
  ℹ️  onHttp: true - {"message":"Location data saved successfully."}: 
 2025-09-08 10:32:57.333948
09-08 10:32:57.335 INFO [TSLog log] 
  ℹ️  onHttp: true - {"message":"Location data saved successfully."}: 
 2025-09-08 10:32:57.334092
09-08 10:32:57.339 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 4
09-08 10:33:15.377 INFO [TSScheduleManager oneShot] 
  ⏰ Scheduled OneShot: TERMINATE_EVENT in 10000ms (jobID: -1708771588)
09-08 10:33:16.712 INFO [TrackingService b] 
  ℹ️  Location availability: false
09-08 10:33:22.130 INFO [TrackingService b] 
  ℹ️  Location availability: true
09-08 10:33:22.174 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:33:22.173725 : 26.7910517,81.0204517
09-08 10:33:22.174 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:33:22.174103 : 26.7910517,81.0204517
09-08 10:33:22.175 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:33:22.174272 : 26.7910517,81.0204517
09-08 10:33:22.180 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:33:22.179361 : 26.791315,81.019935
09-08 10:33:22.180 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:33:22.179930 : 26.791315,81.019935
09-08 10:33:22.181 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:33:22.180193 : 26.791315,81.019935
09-08 10:33:22.182 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:33:22.182494 : 26.7915917,81.01939
09-08 10:33:22.183 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:33:22.182680 : 26.7915917,81.01939
09-08 10:33:22.183 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:33:22.182757 : 26.7915917,81.01939
09-08 10:33:22.185 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:33:22.184849 : 26.7918917,81.0188267
09-08 10:33:22.185 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:33:22.185078 : 26.7918917,81.0188267
09-08 10:33:22.186 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:33:22.185192 : 26.7918917,81.0188267
09-08 10:33:22.186 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: e45954e2-764f-4807-abc4-ee0dc254d4a4
09-08 10:33:22.187 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:33:22.187402 : 26.7922267,81.0182767
09-08 10:33:22.188 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:33:22.187610 : 26.7922267,81.0182767
09-08 10:33:22.188 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:33:22.187706 : 26.7922267,81.0182767
09-08 10:33:22.189 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 82b78f13-6d33-482e-982f-e7f284cd1b19
09-08 10:33:22.193 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 91286da6-23d8-4775-9d63-5707a3d2fa37
09-08 10:33:22.197 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 169e2acf-6ab5-415c-b13d-94e23e5e8b95
09-08 10:33:22.200 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 5b460652-5cd2-448a-b795-b0e2878e2ac3
09-08 10:33:25.394 INFO [ScheduleEvent a] 
╔═════════════════════════════════════════════
║ ⏰ OneShot event fired: TERMINATE_EVENT
╠═════════════════════════════════════════════

09-08 10:33:42.143 INFO [TrackingService b] 
  ℹ️  Location availability: false
09-08 10:33:47.478 INFO [TrackingService b] 
  ℹ️  Location availability: true
09-08 10:33:47.512 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:33:47.511767 : 26.7925533,81.0177
09-08 10:33:47.512 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:33:47.511990 : 26.7925533,81.0177
09-08 10:33:47.513 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:33:47.512087 : 26.7925533,81.0177
09-08 10:33:47.517 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:33:47.517011 : 26.792905,81.0171467
09-08 10:33:47.517 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:33:47.517232 : 26.792905,81.0171467
09-08 10:33:47.518 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:33:47.517355 : 26.792905,81.0171467
09-08 10:33:47.521 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:33:47.521057 : 26.79326,81.01666
09-08 10:33:47.522 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:33:47.521347 : 26.79326,81.01666
09-08 10:33:47.523 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:33:47.523358 : 26.79326,81.01666
09-08 10:33:47.526 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:33:47.525694 : 26.7936367,81.016105
09-08 10:33:47.526 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:33:47.526090 : 26.7936367,81.016105
09-08 10:33:47.527 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:33:47.526288 : 26.7936367,81.016105
09-08 10:33:47.531 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 58f0aeb4-3863-49d9-8322-d6b38d1058de
09-08 10:33:47.531 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:33:47.531027 : 26.7939783,81.01559
09-08 10:33:47.532 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:33:47.531268 : 26.7939783,81.01559
09-08 10:33:47.532 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:33:47.531390 : 26.7939783,81.01559
09-08 10:33:47.540 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 59e21e74-93ec-40f3-96ad-b77c12ee4026
09-08 10:33:47.543 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 80f21a5a-9e39-4e7f-ae00-e66ffefd5e4d
09-08 10:33:47.547 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 57e8059e-1547-4fb4-87ca-00cf4566de7b
09-08 10:33:47.551 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 307c98ea-a413-42ea-ab3f-bca865d37ea7
09-08 10:34:07.480 INFO [TrackingService b] 
  ℹ️  Location availability: false
09-08 10:34:12.915 INFO [TrackingService b] 
  ℹ️  Location availability: true
09-08 10:34:12.951 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:34:12.951435 : 26.7943267,81.0150783
09-08 10:34:12.952 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:34:12.951649 : 26.7943267,81.0150783
09-08 10:34:12.953 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:34:12.951763 : 26.7943267,81.0150783
09-08 10:34:12.953 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:34:12.952051 : 26.794665,81.0145867
09-08 10:34:12.954 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:34:12.952144 : 26.794665,81.0145867
09-08 10:34:12.954 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:34:12.952201 : 26.794665,81.0145867
09-08 10:34:12.955 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:34:12.952513 : 26.795015,81.0140667
09-08 10:34:12.955 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:34:12.952591 : 26.795015,81.0140667
09-08 10:34:12.956 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:34:12.952645 : 26.795015,81.0140667
09-08 10:34:12.960 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 144d7110-6130-407d-9fa2-bdef818fc798
09-08 10:34:12.961 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:34:12.960742 : 26.7953667,81.0135633
09-08 10:34:12.961 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:34:12.961047 : 26.7953667,81.0135633
09-08 10:34:12.962 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:34:12.961213 : 26.7953667,81.0135633
09-08 10:34:12.963 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:34:12.962292 : 26.7957133,81.01306
09-08 10:34:12.963 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:34:12.963051 : 26.7957133,81.01306
09-08 10:34:12.964 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:34:12.963263 : 26.7957133,81.01306
09-08 10:34:12.964 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 59d496c7-1716-4845-a8ba-d2827e70c62c
09-08 10:34:12.968 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 1e68f5a7-e8e1-4e86-84a5-e548bd518f79
09-08 10:34:12.974 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: e4eb58e8-a131-4042-af6c-a1390940db48
09-08 10:34:12.979 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: bb9f2858-6f3d-43bc-b3ca-aef6508aa610
09-08 10:34:12.985 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: e4f67ffb-c3e1-4ded-8c9b-248a5f92077d
09-08 10:34:12.990 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:34:12.990474 : 26.7957133,81.01306
09-08 10:34:12.991 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:34:12.990668 : 26.7957133,81.01306
09-08 10:34:12.991 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 10:34:12.990817 : 26.7957133,81.01306
09-08 10:34:32.920 INFO [TrackingService b] 
  ℹ️  Location availability: false
09-08 10:34:34.183 INFO [TSLog log] 
..............................................The Functionality working fine in between
  ℹ️  onLocation: success: 
 2025-09-08 17:27:10.866460 : 26.7820567,80.8885067
09-08 17:27:30.637 INFO [TrackingService b] 
  ℹ️  Location availability: false
09-08 17:27:31.187 INFO [TrackingService b] 
  ℹ️  Location availability: true
09-08 17:27:31.233 INFO [TrackingService b] 
  ℹ️  Distance from stoppedAtLocation: -55.448837
09-08 17:27:31.240 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 17:27:31.239096 : 26.78205,80.88849
09-08 17:27:31.245 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 17:27:31.244960 : 26.781905,80.888435
09-08 17:27:31.249 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 17:27:31.249048 : 26.7816867,80.88832
09-08 17:27:31.253 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 17:27:31.252559 : 26.7816867,80.88832
09-08 17:27:31.255 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 9e46f0d9-09dd-4b4e-98f3-b2e9d2e2165a
09-08 17:27:31.258 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 17:27:31.256628 : 26.7814683,80.888205
09-08 17:27:31.260 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: cb47dcec-1f7e-4752-a8fc-529c447e7002
09-08 17:27:31.265 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 3cfaccc6-67b5-484c-ad0b-09f9dea65781
09-08 17:27:31.269 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 3b906ef7-d3e0-40cc-b5a8-e27456644dcf
09-08 17:27:31.275 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: dfe0d0ca-4e1a-4be0-8ce2-702c42dadecf
09-08 17:27:31.281 INFO [HttpService flush] 
╔═════════════════════════════════════════════
║ HTTP Service (count: 29)
╠═════════════════════════════════════════════

09-08 17:27:31.340 INFO [BackgroundTaskManager$Task start] ⏳ startBackgroundTask: 66
09-08 17:27:31.350 INFO [HttpService a] 
  🔵  HTTP POST batch (29)
09-08 17:27:32.228 INFO [HttpService$f onResponse] 
  🔵  Response: 200
09-08 17:27:32.230 INFO [TSLog log] 
  ℹ️  onHttp: true - {"message":"Location data saved successfully."}: 
 2025-09-08 17:28:16.663811 : 26.7803,80.88759
09-08 17:28:16.665 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 153207f5-e260-4ba8-bc19-dd0a58ce7e9c
09-08 17:28:16.671 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 17d5cff9-00cf-4d2c-9641-ed2863ca8c4b
09-08 17:28:16.686 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 1d9838cb-7d03-4dbf-ac03-0454ccdae461
09-08 17:28:16.694 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 14ff4341-53ec-4831-a8c7-c5078e8f61e2
09-08 17:28:16.702 INFO [TrackingService b] 
  ℹ️  Distance from stoppedAtLocation: -178.096
09-08 17:28:36.462 INFO [TrackingService b] 
  ℹ️  Location availability: false
09-08 17:28:37.231 INFO [TrackingService b] 
  ℹ️  Location availability: true
09-08 17:28:37.290 INFO [TrackingService b] 
  ℹ️  Distance from stoppedAtLocation: -244.67966
09-08 17:28:37.305 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 17:28:37.304618 : 26.78024,80.8875567
09-08 17:28:37.311 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 17:28:37.310519 : 26.7801,80.8874567
09-08 17:28:37.315 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 17:28:37.315277 : 26.7801,80.8874567
09-08 17:28:37.318 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 2009be75-d679-42e2-ad45-debd8c3dd5b3
09-08 17:28:37.320 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 17:28:37.319564 : 26.7800717,80.8874617
09-08 17:28:37.324 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: d10bb300-2e59-4dfe-be37-06072ad822d2
09-08 17:28:37.328 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: dee11b8b-a57c-4adf-9536-7b5411b0f9ca
09-08 17:28:37.333 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: e924a622-a7ef-457b-80e1-1569476912d3
09-08 17:28:56.839 INFO [TrackingService b] 
  ℹ️  Location availability: false
09-08 17:28:57.006 INFO [TrackingService b] 
  ℹ️  Location availability: true
09-08 17:28:57.075 INFO [TrackingService b] 
  ℹ️  Distance from stoppedAtLocation: -220.3609
09-08 17:28:57.087 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 17:28:57.087039 : 26.7800467,80.8874617
09-08 17:28:57.094 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 17:28:57.094081 : 26.779935,80.8874033
09-08 17:28:57.097 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 17:28:57.096791 : 26.779935,80.8874033
09-08 17:28:57.100 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 5e08cd31-8e8e-4b32-a2c2-3129c8117204
09-08 17:28:57.101 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 17:28:57.101221 : 26.77984,80.8873517
09-08 17:28:57.105 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: dab5a753-a4cf-48ae-9d6d-c83e821ae2f0
09-08 17:28:57.110 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: d0de9c73-cc9d-4587-9937-5683394d887c
09-08 17:28:57.114 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 73f031ae-4dd8-4818-99c8-f56b8ecb925e
09-08 17:29:16.934 INFO [TrackingService b] 
  ℹ️  Location availability: false
09-08 17:29:17.296 INFO [TrackingService b] 
  ℹ️  Location availability: true
09-08 17:29:17.349 INFO [TrackingService b] 
  ℹ️  Distance from stoppedAtLocation: -171.93954
09-08 17:29:17.379 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 17:29:17.378498 : 26.7796433,80.8872517
09-08 17:29:17.386 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 17:29:17.385043 : 26.7795117,80.887175
09-08 17:29:17.389 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 17:29:17.388752 : 26.7795117,80.887175
09-08 17:29:17.391 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 9aba9cda-060d-4413-b56f-c0f96a32ef80
09-08 17:29:17.393 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 17:29:17.392627 : 26.7794067,80.887125
09-08 17:29:17.398 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 9cf46fe8-0fbf-4fcf-b509-d30c4484174b
09-08 17:29:17.404 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 16997b5c-82e1-45a9-9a64-464f3c490a93
09-08 17:29:17.414 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 1370c374-9623-42c7-9c8a-b353c2b443ef
09-08 17:29:37.050 INFO [TrackingService b] 
  ℹ️  Location availability: false
09-08 17:29:37.238 INFO [TrackingService b] 
  ℹ️  Location availability: true
09-08 17:29:37.274 INFO [TrackingService b] 
  ℹ️  Distance from stoppedAtLocation: -101.03173
09-08 17:29:37.286 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 17:29:37.285994 : 26.7791683,80.8870333
09-08 17:29:37.292 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 17:29:37.292048 : 26.7789717,80.8869083
09-08 17:29:37.296 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 17:29:37.295926 : 26.7789717,80.8869083
09-08 17:29:37.301 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 17:29:37.300549 : 26.7788117,80.8867717
09-08 17:29:37.301 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: bf9f85fe-4517-4bf3-b04a-8bb7667a4cb5
09-08 17:29:37.307 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 08a83f0d-415d-40f2-8f6f-fe00f3ca6a8c
09-08 17:29:37.312 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: b7870070-76d6-4c9a-bbe9-f36f3d7899c1
09-08 17:29:37.317 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 722b55b0-aa42-44f2-b31f-4bc218cf9ab3
09-08 17:29:37.326 INFO [HttpService flush] 
╔═════════════════════════════════════════════
║ HTTP Service (count: 26)
╠═════════════════════════════════════════════

09-08 17:29:37.377 INFO [BackgroundTaskManager$Task start] ⏳ startBackgroundTask: 67
09-08 17:29:37.388 INFO [HttpService a] 
  🔵  HTTP POST batch (26)
09-08 17:29:37.771 WARN [HttpService$f onResponse] 
  ⚠️  Response: 401, 
09-08 17:29:37.776 INFO [TSLog log] 
  ℹ️  onHttp: false - <!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1">

        <title>Unauthorized</title>

 2025-09-08 17:29:37.774662
09-08 17:29:37.790 INFO [BackgroundTaskManager$Task stop] ⏳ stopBackgroundTask: 67
09-08 17:29:57.143 INFO [TrackingService b] 
  ℹ️  Location availability: false
09-08 17:29:59.765 INFO [TrackingService b] 
  ℹ️  Location availability: true
09-08 17:29:59.814 INFO [TrackingService b] 
  ℹ️  Distance from stoppedAtLocation: 54.94185
09-08 17:29:59.817 INFO [TSScheduleManager cancelOneShot] 
  ⏰ Cancel OneShot: STOP_TIMEOUT
09-08 17:29:59.845 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: e57acf02-e7e0-4a7d-ad4d-2c013a374c95
09-08 17:29:59.855 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 17:29:59.851396 : 26.778715,80.8864717
09-08 17:29:59.855 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 17:29:59.853408 : 26.778845,80.8861667
09-08 17:29:59.856 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 17:29:59.854650 : 26.7790183,80.88589
09-08 17:29:59.857 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 17:29:59.855758 : 26.779145,80.8855833
09-08 17:29:59.857 INFO [TSLog log] 
  ℹ️  onLocation: success: 
 2025-09-08 17:29:59.857180 : 26.779145,80.8855833
09-08 17:29:59.858 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: d488bed7-5d6f-4906-8468-93dd3e8c5cdd
09-08 17:29:59.863 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: ba3b0911-5358-4aee-9a3f-39ed6e2f70bf
09-08 17:29:59.871 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: 86c7e825-2832-4b02-9b0e-5098302d60e1
09-08 17:29:59.877 INFO [SQLiteLocationDAO persist] 
  ✅  INSERT: b4ef6a7d-e0a6-4c05-a811-47305c2c26b5
09-08 17:29:59.885 INFO [HttpService flush] 
╔═════════════════════════════════════════════
║ HTTP Service (count: 31)
╠═════════════════════════════════════════════

09-08 17:29:59.953 INFO [BackgroundTaskManager$Task start] ⏳ startBackgroundTask: 68
09-08 17:29:59.965 INFO [HttpService a] 
  🔵  HTTP POST batch (31)
09-08 17:30:00.151 WARN [HttpService$f onResponse] 
  ⚠️  Response: 401, 
09-08 17:30:00.154 INFO [TSLog log] 
  ℹ️  onHttp: false

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions