GithubHelp home page GithubHelp logo

Comments (7)

davidgyoung avatar davidgyoung commented on June 5, 2024

Based on the description, it sounds like the Xiaomi mi A2 is blocking Bluetooth scans after after app termination. Because Xiaomi Android extensions are proprietary, it's unfortunately secret and undocumented what is going on here. Your best bet is to do a variety of tests to reverse engineer what they do in this case. Here are some things you might try:

  1. turn on debug logging in library with beaconManager.setDebug(true)
  2. Look for log lines where the app restarts after termination and the library starts a bluetooth scan.
  3. Look for operating system log lines after (2) above which may give clues to whether or why the scans are blocked
  4. Experiment with bringing the app UI to the foreground to see if that changes the ability to do scans, and see if any operating system log lines give further clues.

Unfortunately, I do not have a Xioami device for experimentation, but I am happy to review any logs you can produce with the info above.

from android-beacon-library.

SERCHAT avatar SERCHAT commented on June 5, 2024

@davidgyoung Let me explain something. When the device is plugged to the PC to get logs from library all is working fine. After 12 or 13 hours when I 'am entering in a ble region the MonitorNotifier fires the didDetermineState with MonitorNotifier.Iside . After that I wan to do a range to get minor and major value from beacons. Can you tell me can I range beacons when app is terminated ? And if yes how can I do? Monitoring works like a charm when app is backgrounded/terminated

from android-beacon-library.

davidgyoung avatar davidgyoung commented on June 5, 2024

Sorry, I missed your point 4 where you said you get the monitoring entered event successfully. OK, so it is good that scans are working in the background after termination.

You say this happens after 12 or 13 hours. Are you saying the ranging callback is not empty fine if you only wait 30 minutes after app termination before triggering a region entry event? If you do not need to wait 12 hours to reproduce the problem that would make testing much faster!

I note that you have bm.setEnableScheduledScanJobs(true); which means that the library will rely on the Android job scheduler which really overrides your between scan period of 60000l and makes background scans be scheduled every 15 minutes +/- 10 minutes when the phone is not in doze node. The library also uses a filtered low power scan to get a rapid detection for region entry events. So this is what should happen:

  1. Your app is in the background with no beacons visible and a filtered low power scan going.
  2. A beacon is detected by this filtered low power scan, triggering a didEnterRegion event
  3. The library will start a new scan for an "extra" ranging cycle that lasts for the duration of your custom scan period (3500 ms). At the end of this cycle, it will send your app a didRangeBeacons event with a list of those detected. I will note that this 3.5 seconds is way too short -- the library default is 30 seconds, because in the background, Android turns off the radio receiver most of the time and beacons can take a long time to be detected. It is possible that 3.5 seconds is just not long enough.
  4. After that, I would expect your app to get additional didRangeBeacons events every 15 +/- 10 minutes as allowed by the Android job scheduler.

Can you confirm the above? Do you get a didRangeBeacons event ~3500ms after the region entry event? Is this the one that has an empty list of beacons? And how long does it take for the next didRangeBeacons callback arrive? Is it empty as well?

It would also be helpful if you could try the official reference application (Java version is here: https://github.com/AltBeacon/android-beacon-library-reference) on your phone, which also uses the JobScheduler by default and do both monitoring and ranging in the background. It uses a default background scan period that is a much longer 30000ms. I would like to know if you run that app under the same conditions if its ranging results are non-empty. You'd have to look at LogCat output to see if that is true.

from android-beacon-library.

davidgyoung avatar davidgyoung commented on June 5, 2024

Sorry, I missed your point 4 where you said you get the monitoring entered event successfully. OK, so it is good that scans are working in the background after termination.

You say this happens after 12 or 13 hours. Are you saying the ranging callback is not empty fine if you only wait 30 minutes after app termination before triggering a region entry event? If you do not need to wait 12 hours to reproduce the problem that would make testing much faster!

I note that you have bm.setEnableScheduledScanJobs(true); which means that the library will rely on the Android job scheduler which really overrides your between scan period of 60000l and makes background scans be scheduled every 15 minutes +/- 10 minutes when the phone is not in doze node. The library also uses a filtered low power scan to get a rapid detection for region entry events. So this is what should happen:

  1. Your app is in the background with no beacons visible and a filtered low power scan going.
  2. A beacon is detected by this filtered low power scan, triggering a didEnterRegion event
  3. The library will start a new scan for an "extra" ranging cycle that lasts for the duration of your custom scan period (3500 ms). At the end of this cycle, it will send your app a didRangeBeacons event with a list of those detected. I will note that this 3.5 seconds is way too short -- the library default is 30 seconds, because in the background, Android turns off the radio receiver most of the time and beacons can take a long time to be detected. It is possible that 3.5 seconds is just not long enough.
  4. After that, I would expect your app to get additional didRangeBeacons events every 15 +/- 10 minutes as allowed by the Android job scheduler.

Can you confirm the above? Do you get a didRangeBeacons event ~3500ms after the region entry event? Is this the one that has an empty list of beacons? And how long does it take for the next didRangeBeacons callback arrive? Is it empty as well?

It would also be helpful if you could try the official reference application (Java version is here: https://github.com/AltBeacon/android-beacon-library-reference) on your phone, which also uses the JobScheduler by default and do both monitoring and ranging in the background. It uses a default background scan period that is a much longer 30000ms. I would like to know if you run that app under the same conditions if its ranging results are non-empty. You'd have to look at LogCat output to see if that is true.

from android-beacon-library.

SERCHAT avatar SERCHAT commented on June 5, 2024

@davidgyoung thank you for your reply again. As far as I observed, sometimes the didRange method is never called and sometimes is called but result is an empty array, all this happens after a certain period of time. I mean when I install the app recently everything works fine. Tested terminating the app and waiting for 30 minutes 15 minutes 20 minutes and ranging works fine. After a couple of hours I don't know why but I can not range beacons in region. If you see I have some notifications for testing purposes after a couple of a time I see "Ranging started from worker" what is mean startRanging function called successfully and stuck it here. I do not get notifications from inside the didRangeBeaconsInRegion.
I want to do short scans to get result very fast and show result quickly. Please tell me @davidgyoung what am I do wrong ? Keep in mind I have problem on ranging when app is terminated not backgrounded. The official refference app do monitoring only when app is terminated and range beacons on RangeActivity when this activity is opened or backgrounded.
Thank you for your help.

from android-beacon-library.

davidgyoung avatar davidgyoung commented on June 5, 2024

I understand that you want to get ranging detections rapidly after region entry, but that may not be possible in 3.5 seconds. Different OEMs configure the Bluetooth chip to use a "scan window" that is very small in certain background modes that makes rapid detections impossible. I would encourage you to experiment with my suggested changes above -- specifically a much longer library SCAN_PERIOD to see if that does make a difference. Even if it is not what you want, it would be a helpful troubleshooting step.

Secondly, one other thing you might consider is leaving ranging turned on all the time. There are no battery consequences to doing this. And if you do so you should get one guaranteed ranging result with a detection after region entry.

Thirdly, if the above does not solve the issue, I really need you to reproduce this problem with the reference app and attach logs with beaconModule.setDebug(true); showing the empty range result right after a region entry. Please understand that this forum is for reporting and resolving problems with the library, not with third-party apps, so troubleshooting a third party app is out of scope. Please let me know if you can provide logs reproducing the problem with the reference app and I am happy to assist further.

from android-beacon-library.

SERCHAT avatar SERCHAT commented on June 5, 2024

@davidgyoung there are some logs. When I 'am exited and enter a region gives me these logs. startRangin function called but doesn't run. Did not start ranging for beacons in region. didRangeBeaconsInRegion callback never called from library.

2023-11-02 09:03:39.300  3423-27979 BluetoothAdapter        io.test.compnay                      D  isLeEnabled(): ON
2023-11-02 09:03:39.304  3423-28155 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:03:39.309  3423-28495 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:03:39.311  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=5 mScannerId=0
2023-11-02 09:03:39.313  3423-31147 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:03:39.316  3423-26091 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:03:39.318  3423-27527 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:03:39.320  3423-19307 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:03:39.331  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=7 mScannerId=0
2023-11-02 09:03:39.342  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=8 mScannerId=0
2023-11-02 09:03:39.354  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=12 mScannerId=0
2023-11-02 09:03:39.367  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=13 mScannerId=0
2023-11-02 09:03:39.376  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=14 mScannerId=0
2023-11-02 09:03:39.385  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=15 mScannerId=0
2023-11-02 09:03:39.512  3423-28004 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:03:39.514  3423-28157 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:03:39.515  3423-28498 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:03:39.518  3423-31535 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:03:39.520  3423-26097 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:03:39.521  3423-27534 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:03:39.522  3423-19310 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:03:39.791  3423-27981 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:03:39.792  3423-28159 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:03:39.794  3423-28508 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:03:39.797  3423-31544 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:03:39.798  3423-26100 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:03:39.800  3423-27536 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:03:39.801  3423-19360 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:03:39.805  3423-27985 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:03:39.807  3423-28166 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:03:39.808  3423-28509 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:03:39.811  3423-31565 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:03:39.812  3423-26102 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:03:39.815  3423-27548 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:03:39.816  3423-19362 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:03:40.068  3423-27988 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:03:40.070  3423-28156 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:03:40.071  3423-28514 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:03:40.073  3423-31546 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:03:40.073  3423-26116 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:03:40.074  3423-27538 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:03:40.076  3423-19326 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:03:40.298  3423-27990 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:03:40.336  3423-26114 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:03:40.336  3423-27544 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:03:40.336  3423-19324 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:03:40.336  3423-28168 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:03:40.336  3423-28510 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:03:40.336  3423-31567 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:03:40.348  3423-27992 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:03:40.349  3423-28172 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:03:40.351  3423-28515 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:03:40.353  3423-31569 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:03:40.354  3423-26118 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:03:40.356  3423-27546 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:03:40.357  3423-19340 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:03:40.436  3423-27979 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:03:40.439  3423-28155 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:03:40.442  3423-27979 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:03:40.444  3423-28495 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:03:40.447  3423-28155 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:03:40.450  3423-31147 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:03:40.453  3423-26091 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:03:40.455  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=5 mScannerId=0
2023-11-02 09:03:40.456  3423-27527 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:03:40.458  3423-19307 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:03:40.463  3423-28495 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:03:40.465  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=7 mScannerId=0
2023-11-02 09:03:40.474  3423-31147 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:03:40.476  3423-26091 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:03:40.478  3423-27527 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:03:40.480  3423-19307 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:03:40.483  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=6 scannerId=-1 mScannerId=0
2023-11-02 09:03:40.485  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=6 scannerId=-1 mScannerId=0
2023-11-02 09:03:40.487  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=6 scannerId=-1 mScannerId=0
2023-11-02 09:03:40.489  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=6 scannerId=-1 mScannerId=0
2023-11-02 09:03:40.491  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=6 scannerId=-1 mScannerId=0
2023-11-02 09:04:02.054  3423-9785  newrelic                io.test.company                      I  Connecting, saved state is not available: DataToken{accountId=0, agentId=0}
2023-11-02 09:04:02.484  3423-9785  newrelic                io.test.company                      I  Clearing harvest configuration.
2023-11-02 09:04:10.399  3423-27979 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:10.404  3423-28155 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:10.407  3423-27979 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:10.411  3423-28495 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:10.417  3423-31147 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:10.417  3423-28155 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:10.417  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=5 mScannerId=0
2023-11-02 09:04:10.420  3423-26091 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:10.423  3423-27527 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:10.424  3423-19307 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:10.429  3423-28495 BluetoothLeScanner      io.test.company                      D  could not find callback wrapper
2023-11-02 09:04:10.429  3423-31147 BluetoothLeScanner      io.test.company                      D  could not find callback wrapper
2023-11-02 09:04:10.429  3423-28495 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:10.430  3423-31147 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:10.434  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=7 mScannerId=0
2023-11-02 09:04:10.442  3423-26091 BluetoothLeScanner      io.test.company                      D  could not find callback wrapper
2023-11-02 09:04:10.442  3423-27527 BluetoothLeScanner      io.test.company                      D  could not find callback wrapper
2023-11-02 09:04:10.442  3423-19307 BluetoothLeScanner      io.test.company                      D  could not find callback wrapper
2023-11-02 09:04:10.443  3423-26091 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:10.443  3423-27527 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:10.443  3423-19307 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:10.448  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=8 mScannerId=0
2023-11-02 09:04:10.455  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=12 mScannerId=0
2023-11-02 09:04:10.464  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=13 mScannerId=0
2023-11-02 09:04:10.471  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=14 mScannerId=0
2023-11-02 09:04:10.479  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=15 mScannerId=0
2023-11-02 09:04:10.696  3423-27997 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:10.699  3423-28170 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:10.701  3423-28499 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:10.703  3423-31571 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:10.705  3423-27550 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:10.707  3423-26122 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:10.709  3423-19338 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:10.756  3423-27994 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:10.759  3423-28180 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:10.760  3423-28500 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:10.763  3423-31588 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:10.764  3423-27558 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:10.766  3423-26093 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:10.768  3423-19358 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:10.965  3423-27998 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:10.967  3423-28158 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:10.969  3423-28507 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:10.972  3423-31590 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:10.976  3423-27529 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:10.977  3423-26124 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:10.978  3423-19346 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:11.246  3423-28004 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:11.249  3423-28157 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:11.250  3423-28498 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:11.253  3423-31535 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:11.255  3423-27534 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:11.257  3423-26097 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:11.259  3423-19310 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:11.444  3423-27536 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:11.444  3423-27981 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:11.445  3423-26100 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:11.445  3423-28159 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:11.445  3423-28508 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:11.445  3423-19360 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:11.445  3423-31544 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:11.586  3423-3423  ScanJob                 io.test.company                      I  Using immediateScanJobId from manifest: 208352939
2023-11-02 09:04:11.588  3423-3423  ScanJob                 io.test.company                      I  Using periodicScanJobId from manifest: 208352940
2023-11-02 09:04:11.588  3423-3423  JobInfo                 io.test.company                      W  Requested interval +5m0s0ms for job 208352940 is too small; raising to +15m0s0ms
2023-11-02 09:04:11.588  3423-3423  JobInfo                 io.test.company                      W  Requested flex 0 for job 208352940 is too small; raising to +5m0s0ms
2023-11-02 09:04:11.597  3423-27979 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:11.598  3423-27985 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:11.600  3423-28155 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:11.601  3423-27979 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:11.601  3423-28166 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:11.601  3423-27548 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:11.601  3423-28509 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:11.601  3423-31565 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:11.601  3423-26102 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:11.603  3423-28495 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:11.604  3423-28155 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:11.604  3423-19362 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:11.606  3423-31147 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:11.607  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=5 mScannerId=0
2023-11-02 09:04:11.609  3423-26091 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:11.610  3423-27527 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:11.612  3423-19307 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:11.614  3423-28495 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:11.618  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=7 mScannerId=0
2023-11-02 09:04:11.626  3423-31147 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:11.627  3423-26091 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:11.630  3423-27527 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:11.632  3423-19307 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:11.636  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=6 scannerId=-1 mScannerId=0
2023-11-02 09:04:11.638  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=6 scannerId=-1 mScannerId=0
2023-11-02 09:04:11.640  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=6 scannerId=-1 mScannerId=0
2023-11-02 09:04:11.643  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=6 scannerId=-1 mScannerId=0
2023-11-02 09:04:11.647  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=6 scannerId=-1 mScannerId=0
2023-11-02 09:04:41.498  3423-27979 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:41.501  3423-28155 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:41.504  3423-28495 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:41.507  3423-27979 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:41.507  3423-31147 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:41.508  3423-28495 BluetoothLeScanner      io.test.company                      D  could not find callback wrapper
2023-11-02 09:04:41.508  3423-28155 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:41.509  3423-28495 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:41.512  3423-26091 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:41.513  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=5 mScannerId=0
2023-11-02 09:04:41.519  3423-27527 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:41.520  3423-31147 BluetoothLeScanner      io.test.company                      D  could not find callback wrapper
2023-11-02 09:04:41.521  3423-31147 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:41.523  3423-19307 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:41.524  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=7 mScannerId=0
2023-11-02 09:04:41.540  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=11 mScannerId=0
2023-11-02 09:04:41.544  3423-26091 BluetoothLeScanner      io.test.company                      D  could not find callback wrapper
2023-11-02 09:04:41.545  3423-26091 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:41.545  3423-27527 BluetoothLeScanner      io.test.company                      D  could not find callback wrapper
2023-11-02 09:04:41.549  3423-27527 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:41.550  3423-27988 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:41.551  3423-28156 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:41.554  3423-18879 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=12 mScannerId=0
2023-11-02 09:04:41.554  3423-28514 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:41.558  3423-19307 BluetoothLeScanner      io.test.company                      D  could not find callback wrapper
2023-11-02 09:04:41.559  3423-19307 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:41.560  3423-18879 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=13 mScannerId=0
2023-11-02 09:04:41.570  3423-18879 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=14 mScannerId=0
2023-11-02 09:04:41.577  3423-18879 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=15 mScannerId=0
2023-11-02 09:04:41.825  3423-27990 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:41.825  3423-28168 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:41.826  3423-28510 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:41.826  3423-26116 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:41.827  3423-31546 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:41.828  3423-27538 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:41.829  3423-19326 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:42.108  3423-27992 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:42.110  3423-28172 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:42.116  3423-28515 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:42.116  3423-26114 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:42.117  3423-31567 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:42.118  3423-27544 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:42.119  3423-19324 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:42.379  3423-27997 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:42.384  3423-28170 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:42.384  3423-28499 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:42.386  3423-26118 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:42.388  3423-31569 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:42.390  3423-27546 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:42.391  3423-19340 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:42.438  3423-27994 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:42.440  3423-28180 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:42.442  3423-28500 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:42.444  3423-26122 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:42.446  3423-27550 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:42.446  3423-31571 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:42.452  3423-19338 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:42.484  3423-3442  System                  io.test.company                      W  A resource failed to call close. 
2023-11-02 09:04:42.619  3423-27979 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:42.623  3423-28155 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:42.625  3423-27979 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:42.630  3423-28495 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:42.635  3423-28155 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:42.639  3423-31147 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:42.645  3423-26091 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:42.646  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=5 mScannerId=0
2023-11-02 09:04:42.655  3423-27527 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:42.658  3423-19307 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:42.664  3423-26093 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:42.666  3423-31588 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:42.667  3423-27558 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:42.668  3423-19358 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:04:42.670  3423-28495 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:42.675  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=7 mScannerId=0
2023-11-02 09:04:42.688  3423-31147 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:42.690  3423-26091 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:42.692  3423-27527 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:42.695  3423-19307 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:04:42.698  2285-3494  BtGatt.GattService      com.android.bluetooth                E  App 'io.test.company' is scanning too frequently
2023-11-02 09:04:42.699  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=6 scannerId=-1 mScannerId=0
2023-11-02 09:04:42.701  2285-3494  BtGatt.GattService      com.android.bluetooth                E  App 'io.test.company' is scanning too frequently
2023-11-02 09:04:42.701  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=6 scannerId=-1 mScannerId=0
2023-11-02 09:04:42.703  2285-3494  BtGatt.GattService      com.android.bluetooth                E  App 'io.test.company' is scanning too frequently
2023-11-02 09:04:42.703  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=6 scannerId=-1 mScannerId=0
2023-11-02 09:04:42.705  2285-3494  BtGatt.GattService      com.android.bluetooth                E  App 'io.test.company' is scanning too frequently
2023-11-02 09:04:42.705  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=6 scannerId=-1 mScannerId=0
2023-11-02 09:04:42.710  2285-3494  BtGatt.GattService      com.android.bluetooth                E  App 'io.test.company' is scanning too frequently
2023-11-02 09:04:42.711  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=6 scannerId=-1 mScannerId=0
2023-11-02 09:05:02.027  3423-9785  newrelic                io.test.company                      I  Connecting, saved state is not available: DataToken{accountId=0, agentId=0}
2023-11-02 09:05:02.143  3423-9785  newrelic                io.test.company                      I  Clearing harvest configuration.
2023-11-02 09:05:12.572  3423-27979 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:12.578  3423-28155 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:12.585  3423-27979 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:12.589  3423-28495 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:12.591  3423-28155 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:12.600  3423-31147 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:12.601  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=5 mScannerId=0
2023-11-02 09:05:12.603  3423-26091 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:12.605  3423-27527 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:12.609  3423-28495 BluetoothLeScanner      io.test.company                      D  could not find callback wrapper
2023-11-02 09:05:12.609  3423-19307 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:12.609  3423-19307 BluetoothLeScanner      io.test.company                      D  could not find callback wrapper
2023-11-02 09:05:12.610  3423-28495 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:12.611  3423-19307 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:12.616  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=7 mScannerId=0
2023-11-02 09:05:12.621  3423-26091 BluetoothLeScanner      io.test.company                      D  could not find callback wrapper
2023-11-02 09:05:12.621  3423-27527 BluetoothLeScanner      io.test.company                      D  could not find callback wrapper
2023-11-02 09:05:12.622  3423-31147 BluetoothLeScanner      io.test.company                      D  could not find callback wrapper
2023-11-02 09:05:12.623  3423-27527 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:12.624  3423-31147 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:12.624  3423-26091 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:12.629  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=8 mScannerId=0
2023-11-02 09:05:12.639  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=11 mScannerId=0
2023-11-02 09:05:12.648  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=12 mScannerId=0
2023-11-02 09:05:12.656  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=13 mScannerId=0
2023-11-02 09:05:12.663  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=14 mScannerId=0
2023-11-02 09:05:12.711  3423-27998 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:12.712  3423-28158 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:12.712  3423-28507 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:12.715  3423-19346 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:12.715  3423-27529 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:12.715  3423-31590 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:12.716  3423-26124 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:12.814  3423-28004 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:12.815  3423-28157 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:12.821  3423-28498 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:12.828  3423-19310 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:12.835  3423-27534 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:12.838  3423-31535 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:12.838  3423-26097 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:12.998  3423-27981 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:13.002  3423-28159 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:13.002  3423-28508 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:13.004  3423-19360 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:13.005  3423-27536 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:13.006  3423-31544 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:13.008  3423-26100 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:13.268  3423-27985 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:13.271  3423-28166 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:13.271  3423-28509 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:13.271  3423-19362 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:13.273  3423-27548 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:13.274  3423-31565 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:13.275  3423-26102 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:13.551  3423-27988 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:13.552  3423-28156 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:13.553  3423-28514 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:13.556  3423-19326 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:13.557  3423-27538 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:13.558  3423-31546 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:13.559  3423-26116 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:13.695  3423-27979 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:13.702  3423-28155 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:13.710  3423-28495 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:13.711  3423-27979 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:13.716  3423-31147 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:13.718  3423-28155 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:13.721  3423-26091 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:13.721  3423-28495 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:13.724  3423-27527 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:13.726  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=5 mScannerId=0
2023-11-02 09:05:13.729  3423-19307 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:13.739  3423-31147 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:13.747  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=7 mScannerId=0
2023-11-02 09:05:13.758  3423-26091 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:13.762  2285-28824 BtGatt.GattService      com.android.bluetooth                E  App 'io.test.company' is scanning too frequently
2023-11-02 09:05:13.762  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=6 scannerId=-1 mScannerId=0
2023-11-02 09:05:13.767  3423-27527 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:13.770  3423-19307 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:13.773  2285-28824 BtGatt.GattService      com.android.bluetooth                E  App 'io.test.company' is scanning too frequently
2023-11-02 09:05:13.773  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=6 scannerId=-1 mScannerId=0
2023-11-02 09:05:13.775  2285-28824 BtGatt.GattService      com.android.bluetooth                E  App 'io.test.company' is scanning too frequently
2023-11-02 09:05:13.776  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=6 scannerId=-1 mScannerId=0
2023-11-02 09:05:13.778  2285-28824 BtGatt.GattService      com.android.bluetooth                E  App 'io.test.company' is scanning too frequently
2023-11-02 09:05:13.778  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=6 scannerId=-1 mScannerId=0
2023-11-02 09:05:13.780  2285-28824 BtGatt.GattService      com.android.bluetooth                E  App 'io.test.company' is scanning too frequently
2023-11-02 09:05:13.780  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=6 scannerId=-1 mScannerId=0
2023-11-02 09:05:43.682  3423-27979 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:43.691  3423-27979 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:43.692  3423-28155 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:43.699  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=5 mScannerId=0
2023-11-02 09:05:43.699  3423-28495 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:43.706  3423-31147 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:43.709  3423-26091 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:43.712  3423-27527 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:43.714  3423-28495 BluetoothLeScanner      io.test.company                      D  could not find callback wrapper
2023-11-02 09:05:43.714  3423-31147 BluetoothLeScanner      io.test.company                      D  could not find callback wrapper
2023-11-02 09:05:43.715  3423-26091 BluetoothLeScanner      io.test.company                      D  could not find callback wrapper
2023-11-02 09:05:43.715  3423-27527 BluetoothLeScanner      io.test.company                      D  could not find callback wrapper
2023-11-02 09:05:43.715  3423-28155 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:43.716  3423-28495 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:43.716  3423-31147 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:43.716  3423-26091 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:43.718  3423-27527 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:43.719  3423-19307 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:43.720  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=7 mScannerId=0
2023-11-02 09:05:43.733  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=8 mScannerId=0
2023-11-02 09:05:43.742  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=11 mScannerId=0
2023-11-02 09:05:43.752  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=12 mScannerId=0
2023-11-02 09:05:43.762  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=13 mScannerId=0
2023-11-02 09:05:43.768  3423-19307 BluetoothLeScanner      io.test.company                      D  could not find callback wrapper
2023-11-02 09:05:43.769  3423-19307 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:43.774  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=14 mScannerId=0
2023-11-02 09:05:43.879  3423-27990 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:43.886  3423-28168 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:43.888  3423-28510 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:43.891  3423-31567 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:43.896  3423-26114 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:43.901  3423-27544 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:43.904  3423-19324 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:43.909  3423-27992 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:43.912  3423-28172 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:43.915  3423-28515 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:43.918  3423-31569 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:43.919  3423-26118 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:43.920  3423-27546 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:43.921  3423-19340 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:44.114  3423-27997 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:44.117  3423-28170 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:44.119  3423-28499 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:44.124  3423-31571 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:44.129  3423-26122 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:44.131  3423-27550 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:44.131  3423-19338 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:44.150  3423-28180 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:44.150  3423-27994 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:44.151  3423-28500 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:44.153  3423-31588 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:44.155  3423-26093 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:44.156  3423-27558 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:44.156  3423-19358 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:44.313  3423-27998 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:44.314  3423-28158 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:44.314  3423-28507 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:44.316  3423-31590 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:44.317  3423-26124 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:44.317  3423-27529 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:44.318  3423-19346 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:44.431  3423-28004 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:44.432  3423-28157 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:44.434  3423-28498 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:44.437  3423-31535 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:44.439  3423-26097 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:44.440  3423-27534 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:44.440  3423-19310 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:44.723  3423-27981 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:44.724  3423-28159 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:44.724  3423-26100 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:44.724  3423-28508 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:44.724  3423-27536 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:44.724  3423-31544 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:44.724  3423-19360 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:44.841  3423-27979 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:44.847  3423-28155 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:44.850  3423-27979 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:44.857  3423-28495 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:44.857  3423-28155 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:44.861  3423-31147 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:44.863  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=5 mScannerId=0
2023-11-02 09:05:44.866  3423-26091 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:44.869  3423-27527 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:44.875  3423-19307 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:44.876  3423-28495 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:44.876  3423-28509 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:44.876  3423-28166 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:44.876  3423-27548 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:44.876  3423-31565 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:44.876  3423-26102 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:44.876  3423-19362 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:05:44.881  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=7 mScannerId=0
2023-11-02 09:05:44.890  3423-31147 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:44.895  3423-26091 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:44.898  3423-27527 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:44.901  3423-19307 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:05:44.903  2285-3494  BtGatt.GattService      com.android.bluetooth                E  App 'io.test.company' is scanning too frequently
2023-11-02 09:05:44.903  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=6 scannerId=-1 mScannerId=0
2023-11-02 09:05:44.906  2285-3494  BtGatt.GattService      com.android.bluetooth                E  App 'io.test.company' is scanning too frequently
2023-11-02 09:05:44.907  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=6 scannerId=-1 mScannerId=0
2023-11-02 09:05:44.910  2285-3494  BtGatt.GattService      com.android.bluetooth                E  App 'io.test.company' is scanning too frequently
2023-11-02 09:05:44.910  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=6 scannerId=-1 mScannerId=0
2023-11-02 09:05:44.913  2285-3494  BtGatt.GattService      com.android.bluetooth                E  App 'io.test.company' is scanning too frequently
2023-11-02 09:05:44.913  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=6 scannerId=-1 mScannerId=0
2023-11-02 09:05:44.915  2285-3494  BtGatt.GattService      com.android.bluetooth                E  App 'io.test.company' is scanning too frequently
2023-11-02 09:05:44.915  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=6 scannerId=-1 mScannerId=0
2023-11-02 09:06:02.061  3423-9785  newrelic                io.test.company                      I  Connecting, saved state is not available: DataToken{accountId=0, agentId=0}
2023-11-02 09:06:02.269  3423-9785  newrelic                io.test.company                      I  Clearing harvest configuration.
2023-11-02 09:06:14.781  3423-27979 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:14.794  3423-28155 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:14.797  3423-27979 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:14.800  3423-28495 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:14.802  3423-31147 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:14.803  3423-28155 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:14.807  3423-26091 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:14.809  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=5 mScannerId=0
2023-11-02 09:06:14.809  3423-27527 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:14.815  3423-28495 BluetoothLeScanner      io.test.company                      D  could not find callback wrapper
2023-11-02 09:06:14.815  3423-31147 BluetoothLeScanner      io.test.company                      D  could not find callback wrapper
2023-11-02 09:06:14.817  3423-19307 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:14.817  3423-31147 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:14.818  3423-28495 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:14.820  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=7 mScannerId=0
2023-11-02 09:06:14.828  3423-26091 BluetoothLeScanner      io.test.company                      D  could not find callback wrapper
2023-11-02 09:06:14.828  3423-27527 BluetoothLeScanner      io.test.company                      D  could not find callback wrapper
2023-11-02 09:06:14.828  3423-19307 BluetoothLeScanner      io.test.company                      D  could not find callback wrapper
2023-11-02 09:06:14.830  3423-27527 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:14.830  3423-19307 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:14.831  3423-26091 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:14.835  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=8 mScannerId=0
2023-11-02 09:06:14.848  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=11 mScannerId=0
2023-11-02 09:06:14.858  3423-3445  BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=12 mScannerId=0
2023-11-02 09:06:14.864  3423-27985 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:14.865  3423-28156 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:14.866  3423-31546 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:14.868  3423-28514 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:14.869  3423-18879 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=13 mScannerId=0
2023-11-02 09:06:14.878  3423-18879 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=14 mScannerId=0
2023-11-02 09:06:15.060  3423-27988 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.061  3423-28168 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.062  3423-31567 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.070  3423-28510 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.073  3423-27538 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.073  3423-19326 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.075  3423-26116 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.235  3423-27990 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.237  3423-28172 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.238  3423-31569 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.241  3423-28515 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.243  3423-27544 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.243  3423-19324 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.244  3423-26114 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.328  3423-27992 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.330  3423-28170 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.332  3423-31571 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.333  3423-28499 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.335  3423-27546 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.336  3423-19340 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.337  3423-26118 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.434  3423-27997 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.437  3423-28180 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.437  3423-31588 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.441  3423-28500 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.442  3423-27550 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.443  3423-19338 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.443  3423-26122 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.596  3423-27994 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.597  3423-28158 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.597  3423-31590 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.599  3423-28507 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.599  3423-27558 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.600  3423-19358 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.600  3423-26093 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.636  3423-27998 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.637  3423-28157 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.637  3423-31535 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.640  3423-28498 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.641  3423-27529 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.641  3423-19346 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.642  3423-26124 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.843  3423-28004 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.848  3423-28159 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.849  3423-31544 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.857  3423-28508 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.859  3423-27534 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.859  3423-19310 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.860  3423-26097 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.873  3423-27981 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.875  3423-28166 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.876  3423-31565 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.878  3423-28509 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.879  3423-27536 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.879  3423-19360 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.880  3423-26100 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:15.892  3423-27979 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:15.897  3423-27979 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:15.906  3423-16144 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=5 mScannerId=0
2023-11-02 09:06:15.942  3423-28155 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:15.949  3423-28495 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:15.952  3423-28155 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:15.955  3423-28495 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:15.957  3423-31147 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:15.960  3423-26091 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:15.961  3423-16144 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=7 mScannerId=0
2023-11-02 09:06:15.967  3423-19307 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:15.967  3423-27527 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:15.972  3423-16144 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=11 mScannerId=0
2023-11-02 09:06:15.982  3423-31147 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:15.986  3423-26091 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:15.990  3423-19307 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:15.994  3423-27527 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:15.997  2285-28283 BtGatt.GattService      com.android.bluetooth                E  App 'io.test.company' is scanning too frequently
2023-11-02 09:06:15.997  3423-16144 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=6 scannerId=-1 mScannerId=0
2023-11-02 09:06:16.000  2285-28283 BtGatt.GattService      com.android.bluetooth                E  App 'io.test.company' is scanning too frequently
2023-11-02 09:06:16.000  3423-16144 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=6 scannerId=-1 mScannerId=0
2023-11-02 09:06:16.003  2285-28283 BtGatt.GattService      com.android.bluetooth                E  App 'io.test.company' is scanning too frequently
2023-11-02 09:06:16.003  3423-16144 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=6 scannerId=-1 mScannerId=0
2023-11-02 09:06:16.006  2285-28283 BtGatt.GattService      com.android.bluetooth                E  App 'io.test.company' is scanning too frequently
2023-11-02 09:06:16.006  3423-16144 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=6 scannerId=-1 mScannerId=0
2023-11-02 09:06:45.872  3423-28155 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:45.879  3423-28495 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:45.885  3423-28155 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:45.885  3423-31147 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:45.893  3423-26091 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:45.897  3423-28495 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:45.898  3423-27527 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:45.902  3423-19307 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:45.903  3423-16144 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=7 mScannerId=0
2023-11-02 09:06:45.906  3423-27979 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:45.913  3423-31147 BluetoothLeScanner      io.test.company                      D  could not find callback wrapper
2023-11-02 09:06:45.913  3423-26091 BluetoothLeScanner      io.test.company                      D  could not find callback wrapper
2023-11-02 09:06:45.914  3423-26091 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:45.916  3423-31147 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:45.918  3423-16144 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=8 mScannerId=0
2023-11-02 09:06:45.926  3423-27527 BluetoothLeScanner      io.test.company                      D  could not find callback wrapper
2023-11-02 09:06:45.927  3423-19307 BluetoothLeScanner      io.test.company                      D  could not find callback wrapper
2023-11-02 09:06:45.929  3423-19307 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:45.929  3423-27527 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:45.935  3423-27979 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:45.940  3423-16144 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=5 mScannerId=0
2023-11-02 09:06:45.949  3423-16144 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=11 mScannerId=0
2023-11-02 09:06:45.957  3423-16144 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=12 mScannerId=0
2023-11-02 09:06:45.965  3423-16144 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=13 mScannerId=0
2023-11-02 09:06:45.972  3423-16144 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=14 mScannerId=0
2023-11-02 09:06:46.118  3423-26102 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:46.119  3423-28156 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:46.120  3423-28514 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:46.125  3423-31546 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:46.128  3423-27548 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:46.130  3423-19362 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:46.132  3423-27985 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:46.184  3423-26116 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:46.191  3423-28168 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:46.196  3423-28510 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:46.200  3423-31567 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:46.204  3423-27538 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:46.207  3423-19326 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:46.208  3423-27988 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:46.326  3423-26114 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:46.328  3423-28172 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:46.329  3423-28515 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:46.332  3423-31569 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:46.333  3423-27544 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:46.334  3423-19324 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:46.337  3423-27990 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:46.805  3423-26118 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:46.812  3423-28170 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:46.817  3423-28499 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:46.818  3423-31571 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:46.818  3423-27546 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:46.819  3423-19340 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:46.819  3423-27992 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:46.907  3423-26122 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:46.907  3423-19338 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:46.907  3423-27997 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:46.908  3423-27550 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:46.908  3423-28180 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:46.908  3423-28500 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:46.908  3423-31588 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:46.946  3423-26093 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:46.946  3423-28158 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:46.947  3423-28507 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:46.947  3423-31590 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:46.948  3423-19358 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:46.949  3423-27558 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:46.952  3423-27994 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:06:46.986  3423-28155 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:46.991  3423-28495 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:46.991  3423-28155 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:46.995  3423-28495 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:46.996  3423-31147 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:47.001  3423-26091 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:47.002  3423-20801 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=7 mScannerId=0
2023-11-02 09:06:47.004  3423-27527 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:47.009  3423-19307 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:47.011  3423-27979 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:47.014  3423-20801 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=8 mScannerId=0
2023-11-02 09:06:47.027  3423-31147 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:47.031  3423-26091 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:47.034  3423-27527 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:47.037  3423-19307 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:47.040  3423-27979 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:06:47.042  2285-3494  BtGatt.GattService      com.android.bluetooth                E  App 'io.test.company' is scanning too frequently
2023-11-02 09:06:47.042  3423-20801 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=6 scannerId=-1 mScannerId=0
2023-11-02 09:06:47.045  2285-3494  BtGatt.GattService      com.android.bluetooth                E  App 'io.test.company' is scanning too frequently
2023-11-02 09:06:47.045  3423-20801 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=6 scannerId=-1 mScannerId=0
2023-11-02 09:06:47.047  2285-3494  BtGatt.GattService      com.android.bluetooth                E  App 'io.test.company' is scanning too frequently
2023-11-02 09:06:47.048  3423-20801 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=6 scannerId=-1 mScannerId=0
2023-11-02 09:06:47.050  2285-3494  BtGatt.GattService      com.android.bluetooth                E  App 'io.test.company' is scanning too frequently
2023-11-02 09:06:47.050  3423-20801 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=6 scannerId=-1 mScannerId=0
2023-11-02 09:06:47.052  2285-3494  BtGatt.GattService      com.android.bluetooth                E  App 'io.test.company' is scanning too frequently
2023-11-02 09:06:47.052  3423-20801 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=6 scannerId=-1 mScannerId=0
2023-11-02 09:07:02.059  3423-9785  newrelic                io.test.company                      I  Connecting, saved state is not available: DataToken{accountId=0, agentId=0}
2023-11-02 09:07:02.173  3423-9785  newrelic                io.test.company                      I  Clearing harvest configuration.
2023-11-02 09:07:16.994  3423-28155 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:17.000  3423-28495 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:17.007  3423-28155 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:17.008  3423-31147 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:17.015  3423-28495 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:17.019  3423-26091 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:17.022  3423-20801 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=5 mScannerId=0
2023-11-02 09:07:17.024  3423-27527 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:17.027  3423-19307 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:17.029  3423-27979 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:17.033  3423-31147 BluetoothLeScanner      io.test.company                      D  could not find callback wrapper
2023-11-02 09:07:17.035  3423-31147 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:17.038  3423-20801 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=7 mScannerId=0
2023-11-02 09:07:17.044  3423-26091 BluetoothLeScanner      io.test.company                      D  could not find callback wrapper
2023-11-02 09:07:17.045  3423-27527 BluetoothLeScanner      io.test.company                      D  could not find callback wrapper
2023-11-02 09:07:17.045  3423-19307 BluetoothLeScanner      io.test.company                      D  could not find callback wrapper
2023-11-02 09:07:17.046  3423-27979 BluetoothLeScanner      io.test.company                      D  could not find callback wrapper
2023-11-02 09:07:17.047  3423-27979 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:17.047  3423-27527 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:17.047  3423-19307 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:17.047  3423-26091 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:17.051  3423-20801 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=8 mScannerId=0
2023-11-02 09:07:17.069  3423-20801 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=11 mScannerId=0
2023-11-02 09:07:17.082  3423-20801 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=12 mScannerId=0
2023-11-02 09:07:17.091  3423-20801 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=13 mScannerId=0
2023-11-02 09:07:17.101  3423-20801 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=14 mScannerId=0
2023-11-02 09:07:17.386  3423-28157 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:17.391  3423-28498 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:17.394  3423-31535 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:17.404  3423-27998 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:17.406  3423-27529 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:17.410  3423-19346 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:17.412  3423-26124 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:17.460  3423-28159 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:17.462  3423-28508 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:17.463  3423-31544 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:17.466  3423-28004 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:17.468  3423-27534 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:17.469  3423-19310 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:17.471  3423-26097 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:17.579  3423-28166 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:17.580  3423-28509 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:17.580  3423-31565 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:17.582  3423-27981 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:17.583  3423-27536 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:17.584  3423-19360 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:17.585  3423-26100 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:17.766  3423-28156 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:17.769  3423-28514 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:17.770  3423-31546 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:17.774  3423-27985 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:17.777  3423-27548 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:17.778  3423-19362 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:17.779  3423-26102 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:17.789  3423-28168 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:17.791  3423-28510 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:17.792  3423-31567 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:17.793  3423-27988 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:17.794  3423-26116 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:17.795  3423-19326 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:17.795  3423-27538 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:18.037  3423-31569 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:18.037  3423-28172 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:18.037  3423-28515 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:18.038  3423-27544 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:18.038  3423-19324 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:18.039  3423-27990 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:18.039  3423-26114 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:18.043  3423-28170 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:18.051  3423-28499 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:18.054  3423-31571 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:18.057  3423-27992 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:18.058  3423-27546 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:18.059  3423-19340 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:18.059  3423-26118 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:18.144  3423-28155 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:18.152  3423-28495 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:18.153  3423-28155 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:18.159  3423-31147 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:18.165  3423-28495 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:18.171  3423-26091 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:18.176  3423-20801 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=5 mScannerId=0
2023-11-02 09:07:18.178  3423-27527 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:18.182  3423-19307 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:18.185  3423-27979 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:18.188  3423-31147 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:18.193  3423-20801 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=7 mScannerId=0
2023-11-02 09:07:18.208  3423-26091 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:18.214  3423-27527 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:18.217  3423-19307 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:18.220  3423-27979 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:18.223  2285-3494  BtGatt.GattService      com.android.bluetooth                E  App 'io.test.company' is scanning too frequently
2023-11-02 09:07:18.223  3423-20801 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=6 scannerId=-1 mScannerId=0
2023-11-02 09:07:18.226  2285-3494  BtGatt.GattService      com.android.bluetooth                E  App 'io.test.company' is scanning too frequently
2023-11-02 09:07:18.226  3423-20801 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=6 scannerId=-1 mScannerId=0
2023-11-02 09:07:18.228  2285-3494  BtGatt.GattService      com.android.bluetooth                E  App 'io.test.company' is scanning too frequently
2023-11-02 09:07:18.229  3423-20801 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=6 scannerId=-1 mScannerId=0
2023-11-02 09:07:18.231  2285-3494  BtGatt.GattService      com.android.bluetooth                E  App 'io.test.company' is scanning too frequently
2023-11-02 09:07:18.231  3423-20801 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=6 scannerId=-1 mScannerId=0
2023-11-02 09:07:18.234  2285-3494  BtGatt.GattService      com.android.bluetooth                E  App 'io.test.company' is scanning too frequently
2023-11-02 09:07:18.234  3423-20801 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=6 scannerId=-1 mScannerId=0
2023-11-02 09:07:48.102  3423-28155 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:48.114  3423-28155 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:48.119  3423-28495 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:48.123  3423-31147 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:48.125  3423-20801 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=5 mScannerId=0
2023-11-02 09:07:48.126  3423-26091 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:48.131  3423-27527 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:48.134  3423-19307 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:48.139  3423-27979 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:48.139  3423-31147 BluetoothLeScanner      io.test.company                      D  could not find callback wrapper
2023-11-02 09:07:48.140  3423-26091 BluetoothLeScanner      io.test.company                      D  could not find callback wrapper
2023-11-02 09:07:48.140  3423-27527 BluetoothLeScanner      io.test.company                      D  could not find callback wrapper
2023-11-02 09:07:48.140  3423-19307 BluetoothLeScanner      io.test.company                      D  could not find callback wrapper
2023-11-02 09:07:48.140  3423-27979 BluetoothLeScanner      io.test.company                      D  could not find callback wrapper
2023-11-02 09:07:48.141  3423-27527 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:48.141  3423-19307 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:48.141  3423-28495 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:48.142  3423-27979 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:48.142  3423-31147 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:48.142  3423-26091 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:48.146  3423-20801 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=7 mScannerId=0
2023-11-02 09:07:48.155  3423-20801 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=8 mScannerId=0
2023-11-02 09:07:48.164  3423-20801 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=11 mScannerId=0
2023-11-02 09:07:48.172  3423-20801 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=12 mScannerId=0
2023-11-02 09:07:48.183  3423-20801 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=13 mScannerId=0
2023-11-02 09:07:48.194  3423-20801 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=14 mScannerId=0
2023-11-02 09:07:48.359  3423-28180 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:48.362  3423-27550 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:48.364  3423-19338 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:48.370  3423-28500 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:48.373  3423-27997 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:48.373  3423-31588 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:48.374  3423-26122 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:48.381  3423-28158 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:48.382  3423-27558 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:48.384  3423-19358 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:48.386  3423-28507 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:48.388  3423-27994 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:48.389  3423-31590 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:48.391  3423-26093 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:48.568  3423-28157 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:48.570  3423-27529 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:48.572  3423-19346 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:48.576  3423-28498 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:48.578  3423-27998 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:48.579  3423-31535 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:48.581  3423-26124 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:48.627  3423-28159 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:48.628  3423-27534 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:48.629  3423-19310 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:48.630  3423-28508 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:48.631  3423-28004 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:48.632  3423-31544 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:48.632  3423-26097 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:48.908  3423-28166 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:48.913  3423-19360 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:48.916  3423-27536 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:48.917  3423-28509 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:48.918  3423-27981 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:48.919  3423-31565 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:48.919  3423-26100 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:48.967  3423-28156 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:48.972  3423-27548 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:48.974  3423-19362 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:48.977  3423-28514 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:48.978  3423-27985 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:48.978  3423-31546 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:48.980  3423-26102 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:48.987  3423-28168 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:48.988  3423-27538 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:48.989  3423-19326 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:48.991  3423-28510 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:48.992  3423-27988 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:48.994  3423-31567 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:48.995  3423-26116 ScanHelper              io.test.company                      D  Decoding beacon. First parser layout: m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24
2023-11-02 09:07:49.259  3423-28155 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:49.263  3423-28495 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:49.269  3423-28155 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:49.279  3423-28495 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:49.279  3423-31147 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:49.284  3423-26091 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:49.284  3423-20801 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=5 mScannerId=0
2023-11-02 09:07:49.289  3423-27527 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:49.291  3423-19307 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:49.302  3423-27979 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:49.304  3423-20801 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=0 scannerId=11 mScannerId=0
2023-11-02 09:07:49.318  3423-31147 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:49.321  3423-26091 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:49.326  3423-27527 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:49.330  3423-19307 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:49.333  3423-27979 BluetoothAdapter        io.test.company                      D  isLeEnabled(): ON
2023-11-02 09:07:49.335  2285-3494  BtGatt.GattService      com.android.bluetooth                E  App 'io.test.company' is scanning too frequently
2023-11-02 09:07:49.335  3423-20801 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=6 scannerId=-1 mScannerId=0
2023-11-02 09:07:49.338  2285-3494  BtGatt.GattService      com.android.bluetooth                E  App 'io.test.company' is scanning too frequently
2023-11-02 09:07:49.338  3423-20801 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=6 scannerId=-1 mScannerId=0
2023-11-02 09:07:49.341  2285-3494  BtGatt.GattService      com.android.bluetooth                E  App 'io.test.company' is scanning too frequently
2023-11-02 09:07:49.341  3423-20801 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=6 scannerId=-1 mScannerId=0
2023-11-02 09:07:49.343  2285-3494  BtGatt.GattService      com.android.bluetooth                E  App 'io.test.company' is scanning too frequently
2023-11-02 09:07:49.343  3423-20801 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=6 scannerId=-1 mScannerId=0
2023-11-02 09:07:49.345  2285-3494  BtGatt.GattService      com.android.bluetooth                E  App 'io.test.company' is scanning too frequently
2023-11-02 09:07:49.346  3423-20801 BluetoothLeScanner      io.test.company                      D  onScannerRegistered() - status=6 scannerId=-1 mScannerId=0
2023-11-02 09:08:02.059  3423-9785  newrelic                io.test.company                      I  Connecting, saved state is not available: DataToken{accountId=0, agentId=0}
2023-11-02 09:08:02.176  3423-9785  newrelic                io.test.company                      I  Clearing harvest configuration.

Secondly, one other thing you might consider is leaving ranging turned on all the time. There are no battery consequences to doing this. And if you do so you should get one guaranteed ranging result with a detection after region entry. did you mean do not call the stopRangingBeacons() and removeAllRangeNotifiers() for conituesly ranging ? If I do that sometimes didRangeBeaconInRegion callback called twice.

from android-beacon-library.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.