forked from jamorham/xDrip-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
log2.txt
2894 lines (2623 loc) · 467 KB
/
log2.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
09-15 16:34:11.060 32184-4870/com.eveningoutpost.dexdrip D/jamorham wear: DataMap: {sgvString=94, sgvLevel=0, low=60.0, slopeArrow=→, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.473971649933E12, sgvDouble=94.48125003048453, delta=-0 mg/dl, battery=96} sent to: SmartWatch 3 2B62
09-15 16:33:18.027 17386-17681/com.eveningoutpost.dexdrip D/onDraw: draw
09-15 16:34:11.704 17386-17670/com.eveningoutpost.dexdrip V/WearableLS: bindService: com.eveningoutpost.dexdrip/.ListenerService
09-15 16:34:11.707 17386-17670/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged dataMap={sgvString=94, sgvLevel=0, slopeArrow=→, low=60.0, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.473971649933E12, sgvDouble=94.48125003048453, delta=-0 mg/dl, battery=96}
09-15 16:34:11.707 17386-17670/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged dataMap dex_txid=4023GU
09-15 16:34:11.737 17386-17670/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged prefs set dex_txid=4023GU
09-15 16:34:11.737 17386-17670/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged dataMap units=mgdl
09-15 16:34:11.752 17386-17670/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged prefs units=mgdl
09-15 16:34:11.752 17386-17670/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged dataMap highMark=140.0 highMark=60.0
09-15 16:34:11.753 17386-17670/com.eveningoutpost.dexdrip V/WearableLS: unbindService: com.eveningoutpost.dexdrip/.ListenerService
09-15 16:34:11.756 17386-17386/com.eveningoutpost.dexdrip D/onDraw: draw
09-15 17:19:09.722 29461-30090/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged SYNC_DB_PATH=/syncweardb
09-15 17:19:09.722 29461-30090/com.eveningoutpost.dexdrip V/WearableLS: unbindService: com.eveningoutpost.dexdrip/.ListenerService
09-15 17:19:09.762 29461-30090/com.eveningoutpost.dexdrip V/WearableLS: bindService: com.eveningoutpost.dexdrip/.ListenerService
09-15 17:19:09.764 29461-30090/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged path=/nightscout_watch_sensor_data DataMap={started_at=1472326380472, sensor_location=I don't wish to share, latest_battery_level=216, time=1473974350151, uuid=fa1aa95d-8569-450a-98a7-772b7759195f}
09-15 17:19:09.765 29461-30090/com.eveningoutpost.dexdrip D/jamorham listener: syncSensorData
09-15 17:19:09.768 29461-30090/com.eveningoutpost.dexdrip D/jamorham listener: syncSensorData add Sensor for uuid=fa1aa95d-8569-450a-98a7-772b7759195f
09-15 17:19:09.768 29461-30090/com.eveningoutpost.dexdrip D/jamorham listener: syncSensorData add Sensor for uuid=fa1aa95d-8569-450a-98a7-772b7759195f timestamp=1472326380472 timeString=08.27.2016 15:33:00
09-15 17:19:09.769 29461-30090/com.eveningoutpost.dexdrip E/SENSOR: xDrip_sensor_uuid is fa1aa95d-8569-450a-98a7-772b7759195f
09-15 17:19:09.774 29461-30090/com.eveningoutpost.dexdrip V/WearableLS: unbindService: com.eveningoutpost.dexdrip/.ListenerService
09-15 17:19:09.780 29461-30090/com.eveningoutpost.dexdrip E/AndroidRuntime: FATAL EXCEPTION: WearableListenerService
Process: com.eveningoutpost.dexdrip, PID: 29461
java.lang.NullPointerException: Attempt to invoke virtual method 'com.activeandroid.TableInfo com.activeandroid.ModelInfo.getTableInfo(java.lang.Class)' on a null object reference
at com.activeandroid.Cache.getTableInfo(Unknown Source)
09-15 17:27:38.968 6944-6975/com.eveningoutpost.dexdrip I/OpenGLRenderer: Initialized EGL, version 1.4
09-15 17:27:38.969 6944-6975/com.eveningoutpost.dexdrip W/OpenGLRenderer: Failed to choose config with EGL_SWAP_BEHAVIOR_PRESERVED, retrying without...
09-15 17:28:28.015 6944-6954/com.eveningoutpost.dexdrip I/art: CollectorTransition marksweep + semispace GC freed 1306(52KB) AllocSpace objects, 7(192KB) LOS objects, 24% free, 5MB/7MB, paused 48.767ms total 48.767ms
09-15 17:28:29.079 6944-6944/com.eveningoutpost.dexdrip W/art: Before Android 4.1, method int android.support.v7.widget.ListViewCompat.lookForSelectablePosition(int, boolean) would have incorrectly overridden the package-private method in android.widget.ListView
09-15 17:28:30.031 6944-6944/com.eveningoutpost.dexdrip I/art: Rejecting re-init on previously-failed class java.lang.Class<com.mongodb.connection.AsynchronousSocketChannelStream$1>
09-15 17:28:30.031 6944-6944/com.eveningoutpost.dexdrip I/art: Rejecting re-init on previously-failed class java.lang.Class<com.mongodb.connection.AsynchronousSocketChannelStream$1>
09-15 17:28:30.034 6944-6944/com.eveningoutpost.dexdrip I/art: Rejecting re-init on previously-failed class java.lang.Class<com.mongodb.connection.AsynchronousSocketChannelStream$AsyncWritableByteChannelAdapter$1>
09-15 17:28:30.123 6944-6944/com.eveningoutpost.dexdrip I/art: Rejecting re-init on previously-failed class java.lang.Class<com.mongodb.connection.netty.NettyStream$3>
09-15 17:28:30.125 6944-6944/com.eveningoutpost.dexdrip I/art: Rejecting re-init on previously-failed class java.lang.Class<com.mongodb.connection.netty.NettyStream$InboundBufferHandler>
09-15 17:28:30.125 6944-6944/com.eveningoutpost.dexdrip I/art: Rejecting re-init on previously-failed class java.lang.Class<com.mongodb.connection.netty.NettyStream$InboundBufferHandler>
09-15 17:28:30.129 6944-6944/com.eveningoutpost.dexdrip I/art: Rejecting re-init on previously-failed class java.lang.Class<com.mongodb.connection.netty.ReadTimeoutHandler>
09-15 17:28:30.129 6944-6944/com.eveningoutpost.dexdrip I/art: Rejecting re-init on previously-failed class java.lang.Class<com.mongodb.connection.netty.ReadTimeoutHandler>
09-15 17:28:30.801 6944-6944/com.eveningoutpost.dexdrip D/jamorham listener: DataRequester: /nightscout_watch_data_resend
09-15 17:28:30.894 6944-7729/com.eveningoutpost.dexdrip D/jamorham listener: Not connected for sending
09-15 17:29:31.025 6944-7731/com.eveningoutpost.dexdrip D/onDraw: draw
09-15 17:30:21.898 6944-7728/com.eveningoutpost.dexdrip V/WearableLS: bindService: com.eveningoutpost.dexdrip/.ListenerService
09-15 17:30:21.901 6944-7728/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged SYNC_DB_PATH=/syncweardb
09-15 17:30:21.902 6944-7728/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged path=/nightscout_watch_sensor_data DataMap={started_at=1472326380472, sensor_location=I don't wish to share, latest_battery_level=216, time=1473975021670, uuid=fa1aa95d-8569-450a-98a7-772b7759195f}
09-15 17:30:21.902 6944-7728/com.eveningoutpost.dexdrip D/jamorham listener: syncSensorData
09-15 17:30:21.903 6944-7728/com.eveningoutpost.dexdrip D/jamorham listener: syncSensorData add Sensor for uuid=fa1aa95d-8569-450a-98a7-772b7759195f
09-15 17:30:21.904 6944-7728/com.eveningoutpost.dexdrip D/jamorham listener: syncSensorData add Sensor for uuid=fa1aa95d-8569-450a-98a7-772b7759195f timestamp=1472326380472 timeString=08.27.2016 15:33:00
09-15 17:30:21.904 6944-7728/com.eveningoutpost.dexdrip E/SENSOR: xDrip_sensor_uuid is fa1aa95d-8569-450a-98a7-772b7759195f
09-15 17:30:21.938 6944-7728/com.eveningoutpost.dexdrip E/SENSOR: xDrip_sensor_uuid is fa1aa95d-8569-450a-98a7-772b7759195f
09-15 17:30:21.950 6944-7728/com.eveningoutpost.dexdrip D/jamorham listener: syncSensorData Sensor create.
09-15 17:30:21.971 6944-7728/com.eveningoutpost.dexdrip D/SENSOR MODEL:: Sensors@1
09-15 17:30:21.974 6944-7728/com.eveningoutpost.dexdrip D/jamorham listener: syncSensorData Created Sensor uuid=fa1aa95d-8569-450a-98a7-772b7759195f started at=1472326380472
09-15 17:30:22.024 6944-7728/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged path=/nightscout_watch_cal_data DataMap={first_slope=0.0, first_decay=0.0, possible_bad=true, second_intercept=0.0, uuid=d8e2bebb-b077-40a7-a153-b0e775bea76d, sensor_age_at_time_of_estimation=1.607711023E9, timestamp=1473934091495, adjusted_raw_value=32.464, estimate_bg_at_time_of_calibration=0.0, first_intercept=0.0, bg=122.0, intercept=57.185871159366144, raw_timestamp=1473933852279, second_slope=0.0, slope=1.328183008230712, second_decay=0.0, check_in=false, time=1473975021768, slope_confidence=0.7598868469689216, distance_from_estimate=25.98725056039305, second_scale=0.0, raw_value=32.464, first_scale=0.0, sensor_confidence=0.9117469999999999, sensor_uuid=fa1aa95d-8569-450a-98a7-772b7759195f, entries=[{second_decay=0.0, first_slope=0.0, first_decay=0.0, check_in=false, slope_confidence=0.7598868469689216, possible_bad=true, second_intercept=0.0, distance_from_estimate=25.98725056039305, uuid=d8e2bebb-b077-40a7-a153-b0e775bea76d, sensor_age_at_time_of_estimation=1.607711023E9, second_scale=0.0, timestamp=1473934091495, adjusted_raw_value=32.464, raw_value=32.464, first_scale=0.0, sensor_confidence=0.9117469999999999, estimate_bg_at_time_of_calibration=0.0, first_intercept=0.0, bg=122.0, sensor_uuid=fa1aa95d-8569-450a-98a7-772b7759195f, intercept=57.185871159366144, raw_timestamp=1473933852279, second_slope=0.0, estimate_raw_at_time_of_calibration=41.08419370651245, slope=1.328183008230712}, {second_decay=0.0, first_slope=0.0, first_decay=0.0, check_in=false, slope_confidence=0.8987192289324013, possible_bad=true, second_intercept=0.0, distance_from_estimate=18.21694947092294, uuid=1f0b38be-d524-4dbe-a32d-e56864c55094, sensor_age_at_time_of_estimation=1.564550697E9, second_scale=0.0, timestamp=1473890931169, adjusted_raw_value=40.808, raw_value=40.808, first_scale=0.0, sensor_confidence=0.820835, estimate_bg_at_time_of_calibration=0.0, first_intercept=0.0, bg=90.0, sensor_uuid=fa1aa95d-8569-450a-98a7-772b7759195f, intercept=54.08899004107945, raw_timestamp=1473890056189, second_slope=0.0, estimate_raw_at_time_of_calibration=36.61560951266438, slope=1.2913922929561208}, {second_decay=0.0, first_slope=0.0, first_decay=0.0, check_in=false, slope_confidence=0.9479678866816685, possible_bad=true, second_intercept=0.0, distance_from_estimate=22.824987301289966, uuid=11d0c7ba-ad3c-4911-ac3e-435f36062a06, sensor_age_at_time_of_estimation=1.543434803E9, second_scale=0.0, timestamp=1473869815275, adjusted_raw_value=48.944, raw_value=48.944, first_scale=0.0, sensor_confidence=0.806879, estimate_bg_at_time_of_calibration=0.0, first_intercept=0.0, bg=86.0, sensor_uuid=fa1aa95d-8569-450a-98a7-772b7759195f, intercept=27.710410529077052, raw_timestamp=1473869353112, second_slope=0.0, estimate_raw_at_time_of_calibration=53.97184210270643, slope=1.08}], estimate_raw_at_time_of_calibration=41.08419370651245}
09-15 17:30:22.024 6944-7728/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData
09-15 17:30:22.044 6944-7728/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData add Calibration Table entries count=3
09-15 17:30:22.057 6944-7728/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData add Calibration Table entry={second_decay=0.0, first_slope=0.0, first_decay=0.0, check_in=false, slope_confidence=0.7598868469689216, possible_bad=true, second_intercept=0.0, distance_from_estimate=25.98725056039305, uuid=d8e2bebb-b077-40a7-a153-b0e775bea76d, sensor_age_at_time_of_estimation=1.607711023E9, second_scale=0.0, timestamp=1473934091495, adjusted_raw_value=32.464, raw_value=32.464, first_scale=0.0, sensor_confidence=0.9117469999999999, estimate_bg_at_time_of_calibration=0.0, first_intercept=0.0, bg=122.0, sensor_uuid=fa1aa95d-8569-450a-98a7-772b7759195f, intercept=57.185871159366144, raw_timestamp=1473933852279, second_slope=0.0, estimate_raw_at_time_of_calibration=41.08419370651245, slope=1.328183008230712}
09-15 17:30:22.062 6944-7728/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData create Calibration for uuid=d8e2bebb-b077-40a7-a153-b0e775bea76d timestamp=1473934091495 timeString=09.15.2016 06:08:11
09-15 17:30:22.082 6944-7728/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData add Calibration Table entry={second_decay=0.0, first_slope=0.0, first_decay=0.0, check_in=false, slope_confidence=0.8987192289324013, possible_bad=true, second_intercept=0.0, distance_from_estimate=18.21694947092294, uuid=1f0b38be-d524-4dbe-a32d-e56864c55094, sensor_age_at_time_of_estimation=1.564550697E9, second_scale=0.0, timestamp=1473890931169, adjusted_raw_value=40.808, raw_value=40.808, first_scale=0.0, sensor_confidence=0.820835, estimate_bg_at_time_of_calibration=0.0, first_intercept=0.0, bg=90.0, sensor_uuid=fa1aa95d-8569-450a-98a7-772b7759195f, intercept=54.08899004107945, raw_timestamp=1473890056189, second_slope=0.0, estimate_raw_at_time_of_calibration=36.61560951266438, slope=1.2913922929561208}
09-15 17:30:22.087 6944-7728/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData create Calibration for uuid=1f0b38be-d524-4dbe-a32d-e56864c55094 timestamp=1473890931169 timeString=09.14.2016 18:08:51
09-15 17:30:22.103 6944-7728/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData add Calibration Table entry={second_decay=0.0, first_slope=0.0, first_decay=0.0, check_in=false, slope_confidence=0.9479678866816685, possible_bad=true, second_intercept=0.0, distance_from_estimate=22.824987301289966, uuid=11d0c7ba-ad3c-4911-ac3e-435f36062a06, sensor_age_at_time_of_estimation=1.543434803E9, second_scale=0.0, timestamp=1473869815275, adjusted_raw_value=48.944, raw_value=48.944, first_scale=0.0, sensor_confidence=0.806879, estimate_bg_at_time_of_calibration=0.0, first_intercept=0.0, bg=86.0, sensor_uuid=fa1aa95d-8569-450a-98a7-772b7759195f, intercept=27.710410529077052, raw_timestamp=1473869353112, second_slope=0.0, estimate_raw_at_time_of_calibration=53.97184210270643, slope=1.08}
09-15 17:30:22.108 6944-7728/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData create Calibration for uuid=11d0c7ba-ad3c-4911-ac3e-435f36062a06 timestamp=1473869815275 timeString=09.14.2016 12:16:55
09-15 17:30:22.150 6944-7728/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData cals in wear db count = 3
09-15 17:30:22.180 6944-6954/com.eveningoutpost.dexdrip I/art: Background sticky concurrent mark sweep GC freed 10035(686KB) AllocSpace objects, 12(292KB) LOS objects, 9% free, 9MB/10MB, paused 5.340ms total 65.704ms
09-15 17:30:22.195 6944-7728/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData cal: {"adjusted_raw_value":32.464,"bg":122.0,"check_in":false,"distance_from_estimate":25.98725056039305,"estimate_bg_at_time_of_calibration":0.0,"estimate_raw_at_time_of_calibration":41.08419370651245,"first_decay":0.0,"first_intercept":0.0,"first_scale":0.0,"first_slope":0.0,"intercept":57.185871159366144,"possible_bad":true,"raw_timestamp":1473933852279,"raw_value":32.464,"second_decay":0.0,"second_intercept":0.0,"second_scale":0.0,"second_slope":0.0,"sensor_age_at_time_of_estimation":1.607711023E9,"sensor_confidence":0.9117469999999999,"sensor_uuid":"fa1aa95d-8569-450a-98a7-772b7759195f","slope":1.328183008230712,"slope_confidence":0.7598868469689216,"timestamp":1473934091495,"uuid":"d8e2bebb-b077-40a7-a153-b0e775bea76d"}
09-15 17:30:22.224 6944-7728/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData cal: {"adjusted_raw_value":40.808,"bg":90.0,"check_in":false,"distance_from_estimate":18.21694947092294,"estimate_bg_at_time_of_calibration":0.0,"estimate_raw_at_time_of_calibration":36.61560951266438,"first_decay":0.0,"first_intercept":0.0,"first_scale":0.0,"first_slope":0.0,"intercept":54.08899004107945,"possible_bad":true,"raw_timestamp":1473890056189,"raw_value":40.808,"second_decay":0.0,"second_intercept":0.0,"second_scale":0.0,"second_slope":0.0,"sensor_age_at_time_of_estimation":1.564550697E9,"sensor_confidence":0.820835,"sensor_uuid":"fa1aa95d-8569-450a-98a7-772b7759195f","slope":1.2913922929561208,"slope_confidence":0.8987192289324013,"timestamp":1473890931169,"uuid":"1f0b38be-d524-4dbe-a32d-e56864c55094"}
09-15 17:30:22.251 6944-7728/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData cal: {"adjusted_raw_value":48.944,"bg":86.0,"check_in":false,"distance_from_estimate":22.824987301289966,"estimate_bg_at_time_of_calibration":0.0,"estimate_raw_at_time_of_calibration":53.97184210270643,"first_decay":0.0,"first_intercept":0.0,"first_scale":0.0,"first_slope":0.0,"intercept":27.710410529077052,"possible_bad":true,"raw_timestamp":1473869353112,"raw_value":48.944,"second_decay":0.0,"second_intercept":0.0,"second_scale":0.0,"second_slope":0.0,"sensor_age_at_time_of_estimation":1.543434803E9,"sensor_confidence":0.806879,"sensor_uuid":"fa1aa95d-8569-450a-98a7-772b7759195f","slope":1.08,"slope_confidence":0.9479678866816685,"timestamp":1473869815275,"uuid":"11d0c7ba-ad3c-4911-ac3e-435f36062a06"}
09-15 17:30:22.251 6944-7728/com.eveningoutpost.dexdrip V/WearableLS: unbindService: com.eveningoutpost.dexdrip/.ListenerService
09-15 17:30:31.024 6944-7733/com.eveningoutpost.dexdrip D/onDraw: draw
09-15 18:54:14.123 16725-16840/com.eveningoutpost.dexdrip D/BgSendQueue: resendData enter
09-15 18:54:14.155 16725-16840/com.eveningoutpost.dexdrip D/BgSendQueue: resendData graph_bgs size=14
09-15 18:54:14.436 16725-16840/com.eveningoutpost.dexdrip I/BG GSON:: {"a":2.4669094406697343E-11,"age_adjusted_raw_value":34.208,"b":-72.72349392579667,"c":5.359648069762125E13,"calculated_value":102.62035550492234,"calculated_value_slope":4.90271578057763E-6,"calibration_flag":false,"calibration_uuid":"d8e2bebb-b077-40a7-a153-b0e775bea76d","filtered_calculated_value":101.96157673283992,"filtered_data":33.712,"hide_slope":false,"ra":1.8573565731396668E-11,"raw_calculated":0.0,"raw_data":34.208,"rb":-54.75412158951815,"rc":4.035323473152994E13,"sensor_uuid":"fa1aa95d-8569-450a-98a7-772b7759195f","synced":false,"time_since_sensor_started":1.65367343E9,"timestamp":1473980053902,"uuid":"45993924-0ad6-4571-a2f2-268e614d5898"}
0
09-15 22:22:30.568 19242-19242/com.eveningoutpost.dexdrip D/jamorham listener: DataRequester: /nightscout_watch_data_resend
09-15 22:22:30.595 19242-19719/com.eveningoutpost.dexdrip D/jamorham listener: doInBackground connected. NodeApi.GetConnectedNodesResult await count=1
09-15 22:22:30.595 19242-19719/com.eveningoutpost.dexdrip D/jamorham listener: stopBtG5Service
09-15 22:22:30.614 19242-19719/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData last_send_previous:12.31.1969 19:00:00
09-15 22:22:31.016 19242-19713/com.eveningoutpost.dexdrip D/onDraw: draw
09-15 23:12:47.197 10596-11125/com.eveningoutpost.dexdrip D/jamorham listener: syncSensorData add Sensor for uuid=fa1aa95d-8569-450a-98a7-772b7759195f timestamp=1472326380472 timeString=08.27.2016 15:33:00
09-15 23:12:47.198 10596-11125/com.eveningoutpost.dexdrip D/SENSOR: xDrip_sensor_uuid is fa1aa95d-8569-450a-98a7-772b7759195f
09-15 23:12:47.198 10596-11125/com.eveningoutpost.dexdrip E/SQLiteLog: (1) no such table: Sensor
09-15 23:12:47.199 10596-11125/com.eveningoutpost.dexdrip D/SENSOR: xDrip_sensor_uuid is fa1aa95d-8569-450a-98a7-772b7759195f
09-15 23:12:47.199 10596-11125/com.eveningoutpost.dexdrip E/SQLiteLog: (1) no such table: Sensor
09-15 23:12:47.200 10596-11125/com.eveningoutpost.dexdrip D/jamorham listener: syncSensorData Sensor create.
09-15 23:12:47.235 10596-11125/com.eveningoutpost.dexdrip D/SENSOR MODEL:: Sensors@1
09-15 23:12:47.240 10596-11125/com.eveningoutpost.dexdrip D/jamorham listener: syncSensorData Created Sensor uuid=fa1aa95d-8569-450a-98a7-772b7759195f started at=1472326380472
09-15 23:12:47.294 10596-11125/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged path=/nightscout_watch_cal_data DataMap={first_slope=0.0, first_decay=0.0, possible_bad=true, second_intercept=0.0, uuid=d8e2bebb-b077-40a7-a153-b0e775bea76d, sensor_age_at_time_of_estimation=1.607711023E9, timestamp=1473934091495, adjusted_raw_value=32.464, estimate_bg_at_time_of_calibration=0.0, first_intercept=0.0, bg=122.0, intercept=57.185871159366144, raw_timestamp=1473933852279, second_slope=0.0, slope=1.328183008230712, second_decay=0.0, check_in=false, time=1473995567022, slope_confidence=0.7598868469689216, distance_from_estimate=25.98725056039305, second_scale=0.0, raw_value=32.464, first_scale=0.0, sensor_confidence=0.9117469999999999, sensor_uuid=fa1aa95d-8569-450a-98a7-772b7759195f, entries=[{second_decay=0.0, first_slope=0.0, first_decay=0.0, check_in=false, slope_confidence=0.7598868469689216, possible_bad=true, second_intercept=0.0, distance_from_estimate=25.98725056039305, uuid=d8e2bebb-b077-40a7-a153-b0e775bea76d, sensor_age_at_time_of_estimation=1.607711023E9, second_scale=0.0, timestamp=1473934091495, adjusted_raw_value=32.464, raw_value=32.464, first_scale=0.0, sensor_confidence=0.9117469999999999, estimate_bg_at_time_of_calibration=0.0, first_intercept=0.0, bg=122.0, sensor_uuid=fa1aa95d-8569-450a-98a7-772b7759195f, intercept=57.185871159366144, raw_timestamp=1473933852279, second_slope=0.0, estimate_raw_at_time_of_calibration=41.08419370651245, slope=1.328183008230712}, {second_decay=0.0, first_slope=0.0, first_decay=0.0, check_in=false, slope_confidence=0.8987192289324013, possible_bad=true, second_intercept=0.0, distance_from_estimate=18.21694947092294, uuid=1f0b38be-d524-4dbe-a32d-e56864c55094, sensor_age_at_time_of_estimation=1.564550697E9, second_scale=0.0, timestamp=1473890931169, adjusted_raw_value=40.808, raw_value=40.808, first_scale=0.0, sensor_confidence=0.820835, estimate_bg_at_time_of_calibration=0.0, first_intercept=0.0, bg=90.0, sensor_uuid=fa1aa95d-8569-450a-98a7-772b7759195f, intercept=54.08899004107945, raw_timestamp=1473890056189, second_slope=0.0, estimate_raw_at_time_of_calibration=36.61560951266438, slope=1.2913922929561208}, {second_decay=0.0, first_slope=0.0, first_decay=0.0, check_in=false, slope_confidence=0.9479678866816685, possible_bad=true, second_intercept=0.0, distance_from_estimate=22.824987301289966, uuid=11d0c7ba-ad3c-4911-ac3e-435f36062a06, sensor_age_at_time_of_estimation=1.543434803E9, second_scale=0.0, timestamp=1473869815275, adjusted_raw_value=48.944, raw_value=48.944, first_scale=0.0, sensor_confidence=0.806879, estimate_bg_at_time_of_calibration=0.0, first_intercept=0.0, bg=86.0, sensor_uuid=fa1aa95d-8569-450a-98a7-772b7759195f, intercept=27.710410529077052, raw_timestamp=1473869353112, second_slope=0.0, estimate_raw_at_time_of_calibration=53.97184210270643, slope=1.08}], estimate_raw_at_time_of_calibration=41.08419370651245}
09-15 23:12:47.294 10596-11125/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData
09-15 23:12:47.303 10596-11125/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData add Calibration Table entries count=3
09-15 23:12:47.313 10596-11125/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData add Calibration Table entry={second_decay=0.0, first_slope=0.0, first_decay=0.0, check_in=false, slope_confidence=0.7598868469689216, possible_bad=true, second_intercept=0.0, distance_from_estimate=25.98725056039305, uuid=d8e2bebb-b077-40a7-a153-b0e775bea76d, sensor_age_at_time_of_estimation=1.607711023E9, second_scale=0.0, timestamp=1473934091495, adjusted_raw_value=32.464, raw_value=32.464, first_scale=0.0, sensor_confidence=0.9117469999999999, estimate_bg_at_time_of_calibration=0.0, first_intercept=0.0, bg=122.0, sensor_uuid=fa1aa95d-8569-450a-98a7-772b7759195f, intercept=57.185871159366144, raw_timestamp=1473933852279, second_slope=0.0, estimate_raw_at_time_of_calibration=41.08419370651245, slope=1.328183008230712}
09-15 23:12:47.318 10596-11125/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData create Calibration for uuid=d8e2bebb-b077-40a7-a153-b0e775bea76d timestamp=1473934091495 timeString=09.15.2016 06:08:11
09-15 23:12:47.331 10596-11125/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData add Calibration Table entry={second_decay=0.0, first_slope=0.0, first_decay=0.0, check_in=false, slope_confidence=0.8987192289324013, possible_bad=true, second_intercept=0.0, distance_from_estimate=18.21694947092294, uuid=1f0b38be-d524-4dbe-a32d-e56864c55094, sensor_age_at_time_of_estimation=1.564550697E9, second_scale=0.0, timestamp=1473890931169, adjusted_raw_value=40.808, raw_value=40.808, first_scale=0.0, sensor_confidence=0.820835, estimate_bg_at_time_of_calibration=0.0, first_intercept=0.0, bg=90.0, sensor_uuid=fa1aa95d-8569-450a-98a7-772b7759195f, intercept=54.08899004107945, raw_timestamp=1473890056189, second_slope=0.0, estimate_raw_at_time_of_calibration=36.61560951266438, slope=1.2913922929561208}
09-15 23:12:47.334 10596-11125/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData create Calibration for uuid=1f0b38be-d524-4dbe-a32d-e56864c55094 timestamp=1473890931169 timeString=09.14.2016 18:08:51
09-15 23:12:47.347 10596-11125/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData add Calibration Table entry={second_decay=0.0, first_slope=0.0, first_decay=0.0, check_in=false, slope_confidence=0.9479678866816685, possible_bad=true, second_intercept=0.0, distance_from_estimate=22.824987301289966, uuid=11d0c7ba-ad3c-4911-ac3e-435f36062a06, sensor_age_at_time_of_estimation=1.543434803E9, second_scale=0.0, timestamp=1473869815275, adjusted_raw_value=48.944, raw_value=48.944, first_scale=0.0, sensor_confidence=0.806879, estimate_bg_at_time_of_calibration=0.0, first_intercept=0.0, bg=86.0, sensor_uuid=fa1aa95d-8569-450a-98a7-772b7759195f, intercept=27.710410529077052, raw_timestamp=1473869353112, second_slope=0.0, estimate_raw_at_time_of_calibration=53.97184210270643, slope=1.08}
09-15 23:12:47.350 10596-11125/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData create Calibration for uuid=11d0c7ba-ad3c-4911-ac3e-435f36062a06 timestamp=1473869815275 timeString=09.14.2016 12:16:55
09-15 23:12:47.368 10596-11125/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData cals in wear db count = 3
09-15 23:12:47.396 10596-11125/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData cal: {"adjusted_raw_value":32.464,"bg":122.0,"check_in":false,"distance_from_estimate":25.98725056039305,"estimate_bg_at_time_of_calibration":0.0,"estimate_raw_at_time_of_calibration":41.08419370651245,"first_decay":0.0,"first_intercept":0.0,"first_scale":0.0,"first_slope":0.0,"intercept":57.185871159366144,"possible_bad":true,"raw_timestamp":1473933852279,"raw_value":32.464,"second_decay":0.0,"second_intercept":0.0,"second_scale":0.0,"second_slope":0.0,"sensor_age_at_time_of_estimation":1.607711023E9,"sensor_confidence":0.9117469999999999,"sensor_uuid":"fa1aa95d-8569-450a-98a7-772b7759195f","slope":1.328183008230712,"slope_confidence":0.7598868469689216,"timestamp":1473934091495,"uuid":"d8e2bebb-b077-40a7-a153-b0e775bea76d"}
09-15 23:12:47.424 10596-11125/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData cal: {"adjusted_raw_value":40.808,"bg":90.0,"check_in":false,"distance_from_estimate":18.21694947092294,"estimate_bg_at_time_of_calibration":0.0,"estimate_raw_at_time_of_calibration":36.61560951266438,"first_decay":0.0,"first_intercept":0.0,"first_scale":0.0,"first_slope":0.0,"intercept":54.08899004107945,"possible_bad":true,"raw_timestamp":1473890056189,"raw_value":40.808,"second_decay":0.0,"second_intercept":0.0,"second_scale":0.0,"second_slope":0.0,"sensor_age_at_time_of_estimation":1.564550697E9,"sensor_confidence":0.820835,"sensor_uuid":"fa1aa95d-8569-450a-98a7-772b7759195f","slope":1.2913922929561208,"slope_confidence":0.8987192289324013,"timestamp":1473890931169,"uuid":"1f0b38be-d524-4dbe-a32d-e56864c55094"}
09-15 23:12:47.491 10596-11125/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData cal: {"adjusted_raw_value":48.944,"bg":86.0,"check_in":false,"distance_from_estimate":22.824987301289966,"estimate_bg_at_time_of_calibration":0.0,"estimate_raw_at_time_of_calibration":53.97184210270643,"first_decay":0.0,"first_intercept":0.0,"first_scale":0.0,"first_slope":0.0,"intercept":27.710410529077052,"possible_bad":true,"raw_timestamp":1473869353112,"raw_value":48.944,"second_decay":0.0,"second_intercept":0.0,"second_scale":0.0,"second_slope":0.0,"sensor_age_at_time_of_estimation":1.543434803E9,"sensor_confidence":0.806879,"sensor_uuid":"fa1aa95d-8569-450a-98a7-772b7759195f","slope":1.08,"slope_confidence":0.9479678866816685,"timestamp":1473869815275,"uuid":"11d0c7ba-ad3c-4911-ac3e-435f36062a06"}
09-15 23:12:47.491 10596-11125/com.eveningoutpost.dexdrip V/WearableLS: unbindService: com.eveningoutpost.dexdrip/.ListenerService
09-16 06:41:09.889 17411-17411/com.eveningoutpost.dexdrip D/ViewRootImpl: #1 mView = android.widget.LinearLayout{103d2d2 V.E...... ......I. 0,0-0,0 #10203b0 android:id/toast_layout_root}
09-16 06:41:09.919 17411-17411/com.eveningoutpost.dexdrip D/jamorham watchupdater: onStartCommand Action=com.eveningoutpost.dexdrip.wearintegration.WatchUpdaterService.SyncSensor Path=/nightscout_watch_sensor_data
09-16 06:41:09.929 17411-17411/com.eveningoutpost.dexdrip D/jamorham watchupdater: Sensor sendSensorData uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743 started_at=1474015200776 active=true battery=0 location=null stopped_at=0
09-16 06:41:09.929 17411-17411/com.eveningoutpost.dexdrip D/SENSOR: Sensor toS uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743 started_at=1474015200776 active=true battery=0 location=null stopped_at=0
09-16 06:41:09.939 17411-17411/com.eveningoutpost.dexdrip D/jamorham watchupdater: dataMap sendSensorData GSON: {}
09-16 06:41:09.939 17411-17411/com.eveningoutpost.dexdrip D/jamorham wear: SendDataToLayerThread pre-execute concurrency: 1
09-16 06:41:09.939 17411-17411/com.eveningoutpost.dexdrip D/jamorham exec: New task queue for: sendSensorData
09-16 06:41:09.939 17411-17411/com.eveningoutpost.dexdrip D/jamorham exec: New thread: sendSensorData
09-16 06:41:09.939 17411-18790/com.eveningoutpost.dexdrip D/jamorham exec: Acquire Wakelocks total: 1
09-16 06:41:09.939 17411-17411/com.eveningoutpost.dexdrip D/G5CollectionService: onG5StartCommand wakeup: 2016-09-16 06:41:09
09-16 06:41:09.939 17411-17411/com.eveningoutpost.dexdrip D/G5CollectionService: Transmitter: 4023GU
09-16 06:41:09.949 17411-17411/com.eveningoutpost.dexdrip D/G5CollectionService: Bonded? true
09-16 06:41:09.949 17411-17411/com.eveningoutpost.dexdrip D/BluetoothAdapter: STATE_ON
09-16 06:41:09.949 17411-17411/com.eveningoutpost.dexdrip D/BluetoothAdapter: STATE_ON
09-16 06:41:09.959 17411-17411/com.eveningoutpost.dexdrip D/G5CollectionService: Active Sensor
09-16 06:41:09.959 17411-18791/com.eveningoutpost.dexdrip D/BluetoothAdapter: STATE_ON
09-16 06:41:09.959 17411-18790/com.eveningoutpost.dexdrip D/jamorham wear: DataMap: {sensor_location=null, started_at=1474015200776, latest_battery_level=0, time=1474022469942, uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743} sent to: SmartWatch 3 2B62
09-16 06:41:09.959 17411-18790/com.eveningoutpost.dexdrip D/jamorham wear: SendDataToLayerThread post-execute concurrency: 0
09-16 08:02:54.290 22182-22239/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged path=/nightscout_watch_sensor_data DataMap={started_at=1474015200776, sensor_location=Belly (abdomen), latest_battery_level=0, time=1474027375012, uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743}
09-16 08:02:54.290 22182-22239/com.eveningoutpost.dexdrip D/jamorham listener: syncSensorData
09-16 08:02:54.291 22182-22239/com.eveningoutpost.dexdrip D/jamorham listener: syncSensorData add Sensor for uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743
09-16 08:02:54.291 22182-22239/com.eveningoutpost.dexdrip D/jamorham listener: syncSensorData add Sensor for uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743 timestamp=1474015200776 timeString=09.16.2016 04:40:00
09-16 08:02:54.291 22182-22239/com.eveningoutpost.dexdrip D/SENSOR: xDrip_sensor_uuid is fbe9b40f-c277-4dbc-8399-a0ecee2dc743
09-16 08:02:54.292 22182-22239/com.eveningoutpost.dexdrip E/SQLiteLog: (1) no such table: Sensor
09-16 08:02:54.293 22182-22239/com.eveningoutpost.dexdrip D/SENSOR: xDrip_sensor_uuid is fbe9b40f-c277-4dbc-8399-a0ecee2dc743
09-16 08:02:54.293 22182-22239/com.eveningoutpost.dexdrip E/SQLiteLog: (1) no such table: Sensor
09-16 08:02:54.294 22182-22239/com.eveningoutpost.dexdrip D/jamorham listener: syncSensorData Sensor create.
09-16 08:02:54.320 22182-22239/com.eveningoutpost.dexdrip D/SENSOR MODEL:: Sensors@20
09-16 08:02:54.322 22182-22239/com.eveningoutpost.dexdrip D/jamorham listener: syncSensorData Created Sensor uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743 started at=1474015200776
09-16 08:02:54.337 22182-22239/com.eveningoutpost.dexdrip V/WearableLS: unbindService: com.eveningoutpost.dexdrip/.ListenerService
09-16 08:02:59.018 22182-22674/com.eveningoutpost.dexdrip D/onDraw: draw
09-16 08:03:59.020 22182-22899/com.eveningoutpost.dexdrip D/onDraw: draw
09-16 08:04:59.021 22182-22674/com.eveningoutpost.dexdrip D/onDraw: draw
09-16 08:05:59.013 22182-22899/com.eveningoutpost.dexdrip D/onDraw: draw
09-16 08:06:59.005 22182-22182/com.eveningoutpost.dexdrip D/jamorham listener: DataRequester: /nightscout_watch_data_resend
09-16 08:06:59.012 22182-22674/com.eveningoutpost.dexdrip D/onDraw: draw
09-16 08:06:59.013 22182-22905/com.eveningoutpost.dexdrip D/jamorham listener: Not connected for sending
09-16 08:06:59.058 22182-22182/com.eveningoutpost.dexdrip D/jamorham listener: DataRequester: /nightscout_watch_data_resend
09-16 08:06:59.063 22182-22240/com.eveningoutpost.dexdrip D/jamorham listener: doInBackground connected. NodeApi.GetConnectedNodesResult await count=1
09-16 08:06:59.063 22182-22240/com.eveningoutpost.dexdrip D/jamorham listener: stopBtG5Service
09-16 08:06:59.080 22182-22240/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData last_send_previous:12.31.1969 19:00:00
09-16 08:28:46.939 22182-22239/com.eveningoutpost.dexdrip V/WearableLS: bindService: com.eveningoutpost.dexdrip/.ListenerService
09-16 08:28:46.942 22182-22239/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged SYNC_DB_PATH=/syncweardb
09-16 08:28:46.943 22182-22239/com.eveningoutpost.dexdrip V/WearableLS: unbindService: com.eveningoutpost.dexdrip/.ListenerService
09-16 08:28:46.957 22182-22239/com.eveningoutpost.dexdrip V/WearableLS: bindService: com.eveningoutpost.dexdrip/.ListenerService
09-16 08:28:46.959 22182-22239/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged path=/nightscout_watch_sensor_data DataMap={started_at=1474015200776, sensor_location=Belly (abdomen), latest_battery_level=0, time=1474028926352, uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743}
09-16 08:28:46.959 22182-22239/com.eveningoutpost.dexdrip D/jamorham listener: syncSensorData
09-16 08:28:46.960 22182-22239/com.eveningoutpost.dexdrip D/jamorham listener: syncSensorData add Sensor for uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743
09-16 08:28:46.960 22182-22239/com.eveningoutpost.dexdrip D/jamorham listener: syncSensorData add Sensor for uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743 timestamp=1474015200776 timeString=09.16.2016 04:40:00
09-16 08:28:46.960 22182-22239/com.eveningoutpost.dexdrip D/SENSOR: xDrip_sensor_uuid is fbe9b40f-c277-4dbc-8399-a0ecee2dc743
09-16 08:28:46.960 22182-22239/com.eveningoutpost.dexdrip E/SQLiteLog: (1) no such table: Sensor
09-16 08:28:46.961 22182-22239/com.eveningoutpost.dexdrip D/SENSOR: xDrip_sensor_uuid is fbe9b40f-c277-4dbc-8399-a0ecee2dc743
09-16 08:28:46.961 22182-22239/com.eveningoutpost.dexdrip E/SQLiteLog: (1) no such table: Sensor
09-16 08:28:46.962 22182-22239/com.eveningoutpost.dexdrip D/jamorham listener: syncSensorData Sensor create.
09-16 08:28:46.988 22182-22239/com.eveningoutpost.dexdrip D/SENSOR MODEL:: Sensors@21
09-16 08:28:46.991 22182-22239/com.eveningoutpost.dexdrip D/jamorham listener: syncSensorData Created Sensor uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743 started at=1474015200776
09-16 08:28:47.010 22182-22239/com.eveningoutpost.dexdrip V/WearableLS: unbindService: com.eveningoutpost.dexdrip/.ListenerService
09-16 08:28:59.018 22182-22674/com.eveningoutpost.dexdrip D/onDraw: draw
09-16 08:29:59.022 22182-22899/com.eveningoutpost.dexdrip D/onDraw: draw
09-16 08:30:59.021 22182-22674/com.eveningoutpost.dexdrip D/onDraw: draw
09-16 08:31:59.010 22182-22182/com.eveningoutpost.dexdrip D/jamorham listener: DataRequester: /nightscout_watch_data_resend
09-16 08:31:59.016 22182-22278/com.eveningoutpost.dexdrip D/jamorham listener: Not connected for sending
09-16 08:31:59.024 22182-22899/com.eveningoutpost.dexdrip D/onDraw: draw
09-16 08:31:59.066 22182-22182/com.eveningoutpost.dexdrip D/jamorham listener: DataRequester: /nightscout_watch_data_resend
09-16 08:31:59.073 22182-22278/com.eveningoutpost.dexdrip D/jamorham listener: doInBackground connected. NodeApi.GetConnectedNodesResult await count=1
09-16 08:31:59.073 22182-22278/com.eveningoutpost.dexdrip D/jamorham listener: stopBtG5Service
09-16 08:31:59.079 22182-22278/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData last_send_previous:12.31.1969 19:00:00
09-16 08:32:59.021 22182-22674/com.eveningoutpost.dexdrip D/onDraw: draw
09-16 08:33:59.013 22182-22899/com.eveningoutpost.dexdrip D/onDraw: draw
09-16 08:34:27.378 22182-22182/com.eveningoutpost.dexdrip D/onDraw: draw
09-16 08:34:30.278 22182-22239/com.eveningoutpost.dexdrip V/WearableLS: bindService: com.eveningoutpost.dexdrip/.ListenerService
09-16 08:34:30.282 22182-22239/com.eveningoutpost.dexdrip V/WearableLS: unbindService: com.eveningoutpost.dexdrip/.ListenerService
09-16 08:34:30.286 22182-22239/com.eveningoutpost.dexdrip V/WearableLS: bindService: com.eveningoutpost.dexdrip/.ListenerService
09-16 08:34:30.287 22182-22239/com.eveningoutpost.dexdrip V/WearableLS: unbindService: com.eveningoutpost.dexdrip/.ListenerService
09-16 08:49:08.387 6016-6186/com.eveningoutpost.dexdrip D/BluetoothGatt: setCharacteristicNotification() - uuid: f8083535-849e-531c-c594-30f1f86a4ea5 enable: true
09-16 08:49:08.387 6016-6186/com.eveningoutpost.dexdrip D/BluetoothGatt: onClientConnParamsChanged() - Device=FF:92:A0:57:7C:E9 interval=38 status=0
09-16 08:49:08.457 6016-6028/com.eveningoutpost.dexdrip E/G5CollectionService: ReadStatus: 0
09-16 08:49:08.467 6016-6028/com.eveningoutpost.dexdrip I/G5CollectionService: onCharacteristicRead On Main Thread? false
09-16 08:49:08.467 6016-6028/com.eveningoutpost.dexdrip E/G5CollectionService: CharBytes-or [7]
09-16 08:49:08.477 6016-6028/com.eveningoutpost.dexdrip I/G5CollectionService: CharHex-or 07
09-16 08:49:08.477 6016-6028/com.eveningoutpost.dexdrip I/G5CollectionService: 7 - Transmitter NOT already authenticated
09-16 08:49:08.477 6016-6028/com.eveningoutpost.dexdrip I/G5CollectionService: [B@b0b7cd1
09-16 08:49:08.557 6016-6029/com.eveningoutpost.dexdrip E/G5CollectionService: Success Write 0
09-16 08:49:08.567 6016-6029/com.eveningoutpost.dexdrip I/G5CollectionService: onCharacteristicWrite On Main Thread? false
09-16 08:49:08.567 6016-6029/com.eveningoutpost.dexdrip I/G5CollectionService: Char Value: [1, 52, 97, 101, 55, 49, 51, 51, 54, 2]
09-16 08:49:08.567 6016-6029/com.eveningoutpost.dexdrip I/G5CollectionService: auth? f8083535-849e-531c-c594-30f1f86a4ea5
09-16 08:49:08.657 6016-6186/com.eveningoutpost.dexdrip E/G5CollectionService: ReadStatus: 0
09-16 08:49:08.687 6016-6186/com.eveningoutpost.dexdrip I/G5CollectionService: onCharacteristicRead On Main Thread? false
09-16 08:49:08.687 6016-6186/com.eveningoutpost.dexdrip E/G5CollectionService: CharBytes-or [3, -124, 94, 56, -57, 63, -3, 112, 0, -94, 30, 29, -121, -65, -1, 88, 106]
09-16 08:49:08.697 6016-6186/com.eveningoutpost.dexdrip I/G5CollectionService: CharHex-or 03845e38c73ffd7000a21e1d87bfff586a
09-16 08:49:08.697 6016-6186/com.eveningoutpost.dexdrip I/G5CollectionService: tokenHash [-124, 94, 56, -57, 63, -3, 112, 0]
09-16 08:49:08.697 6016-6186/com.eveningoutpost.dexdrip I/G5CollectionService: singleUSe [-124, 94, 56, -57, 63, -3, 112, 0]
09-16 08:49:08.697 6016-6186/com.eveningoutpost.dexdrip D/G5CollectionService: challenge hash[-79, -43, 6, 38, 9, 75, -68, 22]
09-16 08:49:08.697 6016-6186/com.eveningoutpost.dexdrip D/G5CollectionService: Transmitter try auth challenge
09-16 08:49:08.697 6016-6186/com.eveningoutpost.dexdrip I/G5CollectionService: Auth Challenge: [4, -79, -43, 6, 38, 9, 75, -68, 22]
09-16 08:49:08.797 6016-6028/com.eveningoutpost.dexdrip E/G5CollectionService: Success Write 0
09-16 08:49:08.797 6016-6028/com.eveningoutpost.dexdrip I/G5CollectionService: onCharacteristicWrite On Main Thread? false
09-16 08:49:08.797 6016-6028/com.eveningoutpost.dexdrip I/G5CollectionService: Char Value: [4, -79, -43, 6, 38, 9, 75, -68, 22]
09-16 08:49:08.797 6016-6028/com.eveningoutpost.dexdrip I/G5CollectionService: auth? f8083535-849e-531c-c594-30f1f86a4ea5
09-16 08:49:08.887 6016-6029/com.eveningoutpost.dexdrip E/G5CollectionService: ReadStatus: 0
09-16 08:49:08.897 6016-6029/com.eveningoutpost.dexdrip I/G5CollectionService: onCharacteristicRead On Main Thread? false
09-16 08:49:08.897 6016-6029/com.eveningoutpost.dexdrip E/G5CollectionService: CharBytes-or [5, 1, 1]
09-16 08:49:08.907 6016-6029/com.eveningoutpost.dexdrip I/G5CollectionService: CharHex-or 050101
09-16 08:49:08.907 6016-6029/com.eveningoutpost.dexdrip I/G5CollectionService: Request Sensor Data
09-16 08:49:08.907 6016-6029/com.eveningoutpost.dexdrip D/BluetoothGatt: setCharacteristicNotification() - uuid: f8083534-849e-531c-c594-30f1f86a4ea5 enable: true
09-16 08:49:08.987 6016-6186/com.eveningoutpost.dexdrip I/G5CollectionService: onDescriptorWrite On Main Thread? false
09-16 08:49:08.987 6016-6186/com.eveningoutpost.dexdrip E/G5CollectionService: Writing descriptor: 0
09-16 08:49:09.127 6016-6028/com.eveningoutpost.dexdrip E/G5CollectionService: Success Write 0
09-16 08:49:09.137 6016-6028/com.eveningoutpost.dexdrip I/G5CollectionService: onCharacteristicWrite On Main Thread? false
09-16 08:49:09.137 6016-6028/com.eveningoutpost.dexdrip I/G5CollectionService: control? f8083534-849e-531c-c594-30f1f86a4ea5
09-16 08:49:09.137 6016-6028/com.eveningoutpost.dexdrip I/G5CollectionService: status? 0
09-16 08:49:09.137 6016-6028/com.eveningoutpost.dexdrip E/G5CollectionService: CharBytes-nfy[47, 0, -101, -84, 68, 0, -32, -70, 1, 0, -128, -55, 1, 0, -98, -24]
09-16 08:49:09.147 6016-6028/com.eveningoutpost.dexdrip I/G5CollectionService: CharHex-nfy2f009bac4400e0ba010080c901009ee8
09-16 08:49:09.147 6016-6028/com.eveningoutpost.dexdrip I/G5CollectionService: onCharacteristicChanged On Main Thread? false
09-16 08:49:09.147 6016-6028/com.eveningoutpost.dexdrip D/BluetoothGatt: requestConnectionPriority() - params: 1
09-16 08:49:09.157 6016-6028/com.eveningoutpost.dexdrip E/G5CollectionService: unfiltered: 113376
09-16 08:49:09.197 6016-6028/com.eveningoutpost.dexdrip D/BluetoothGatt: setCharacteristicNotification() - uuid: f8083534-849e-531c-c594-30f1f86a4ea5 enable: false
09-16 08:49:09.197 6016-6028/com.eveningoutpost.dexdrip D/BluetoothGatt: cancelOpen() - device: FF:92:A0:57:7C:E9
09-16 08:49:09.277 6016-6028/com.eveningoutpost.dexdrip I/timestamp create: 1474030149213
09-16 08:49:09.287 6016-6028/com.eveningoutpost.dexdrip D/BgReading: create: No calibration yet
09-16 08:49:09.287 6016-6028/com.eveningoutpost.dexdrip I/BgReading: calculateAgeAdjustedRawValue: RAW VALUE ADJUSTMENT FROM:113.376 TO: 159.74938313236842
09-16 08:49:09.317 6016-6028/com.eveningoutpost.dexdrip I/BgReading: find_new_curve: Not enough data to calculate parabolic rates - assume static data
09-16 08:49:09.317 6016-6028/com.eveningoutpost.dexdrip I/BgReading: 0.0x^2 + 0.0x + 0.0
09-16 08:49:09.387 6016-6028/com.eveningoutpost.dexdrip I/BgReading: find_new_raw_curve: Not enough data to calculate parabolic rates - assume static data
09-16 08:49:09.407 6016-6028/com.eveningoutpost.dexdrip W/BgReading: NO BG? COULDNT FIND SLOPE!
09-16 08:49:09.447 6016-6028/com.eveningoutpost.dexdrip I/BG GSON:: {"a":0.0,"age_adjusted_raw_value":159.74938313236842,"b":0.0,"c":0.0,"calculated_value":0.0,"calculated_value_slope":0.0,"calibration_flag":false,"filtered_calculated_value":0.0,"filtered_data":117.12,"hide_slope":false,"ra":0.0,"raw_calculated":0.0,"raw_data":113.376,"rb":0.0,"rc":34.232,"sensor_uuid":"fbe9b40f-c277-4dbc-8399-a0ecee2dc743","synced":false,"time_since_sensor_started":1.4948437E7,"timestamp":1474030149213,"uuid":"fc9db2d0-3072-4b58-8ae9-e2b5306485d5"}
09-16 08:49:09.447 6016-6028/com.eveningoutpost.dexdrip D/Dex raw_data: 113376.0
09-16 08:49:09.447 6016-6028/com.eveningoutpost.dexdrip D/Dex filtered_data: 0.0
09-16 08:49:09.447 6016-6028/com.eveningoutpost.dexdrip D/Dex sensor_battery_level: 216.0
09-16 08:49:09.447 6016-6028/com.eveningoutpost.dexdrip D/Dex timestamp: 1.474030149213E12
09-16 08:49:09.447 6016-6028/com.eveningoutpost.dexdrip D/BluetoothGatt: onClientConnectionState() - status=0 clientIf=6 device=FF:92:A0:57:7C:E9
09-16 08:49:09.447 6016-6028/com.eveningoutpost.dexdrip I/G5CollectionService: onConnectionStateChange On Main Thread? false
09-16 08:49:09.447 6016-6028/com.eveningoutpost.dexdrip E/G5CollectionService: STATE_DISCONNECTED: 0
09-16 08:49:09.457 6016-6028/com.eveningoutpost.dexdrip D/BluetoothGatt: close()
09-16 08:49:09.457 6016-6028/com.eveningoutpost.dexdrip D/BluetoothGatt: unregisterApp() - mClientIf=6
09-16 08:49:09.457 6016-6028/com.eveningoutpost.dexdrip I/G5CollectionService: clean disconnect
09-18 16:55:27.619 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.18.2016 11:43:59
09-18 16:55:27.631 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.632 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.18.2016 11:54:03
09-18 16:55:27.635 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.18.2016 11:54:03
09-18 16:55:27.635 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: doInBackground send getWearBGData BGs to phone
09-18 16:55:27.652 13545-13545/com.eveningoutpost.dexdrip D/jamorham listener: send getWearBGData BGs to phone: SUCCESS
09-18 16:55:27.657 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData last_send_previous:09.18.2016 11:54:03
09-18 16:55:27.665 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData last_bg.timestamp:09.18.2016 16:44:03
09-18 16:55:27.667 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData last_send_previous < last_bg.timestamp:09.18.2016 16:44:03
09-18 16:55:27.686 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData graph_bgs count = 31
09-18 16:55:27.690 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:25.747 13545-13545/com.eveningoutpost.dexdrip I/chatty: uid=10039(com.eveningoutpost.dexdrip) expire 2 lines
09-18 16:55:25.750 13545-13545/com.eveningoutpost.dexdrip I/art: Rejecting re-init on previously-failed class java.lang.Class<com.mongodb.connection.netty.NettyStream$InboundBufferHandler>
09-18 16:55:25.752 13545-13545/com.eveningoutpost.dexdrip I/art: Rejecting re-init on previously-failed class java.lang.Class<com.mongodb.connection.netty.ReadTimeoutHandler>
09-18 16:55:25.753 13545-13545/com.eveningoutpost.dexdrip I/art: Rejecting re-init on previously-failed class java.lang.Class<com.mongodb.connection.netty.ReadTimeoutHandler>
09-18 16:55:26.062 13545-13545/com.eveningoutpost.dexdrip D/jamorham listener: DataRequester: /nightscout_watch_data_resend
09-18 16:55:26.102 13545-13651/com.eveningoutpost.dexdrip D/jamorham listener: Not connected for sending
09-18 16:55:26.148 13545-13545/com.eveningoutpost.dexdrip D/onDraw: draw
09-18 16:55:26.182 13545-13545/com.eveningoutpost.dexdrip D/onDraw: draw
09-18 16:55:26.285 13545-13545/com.eveningoutpost.dexdrip D/wearSENSOR: InitDb DB exists
09-18 16:55:26.285 13545-13545/com.eveningoutpost.dexdrip D/jamorham listener: DataRequester: /nightscout_watch_data_resend
09-18 16:55:26.300 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: doInBackground connected. NodeApi.GetConnectedNodesResult await count=1
09-18 16:55:26.300 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: stopBtG5Service
09-18 16:55:26.318 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData last_send_previous:12.31.1969 19:00:00
09-18 16:55:26.322 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData last_bg.timestamp:09.18.2016 16:44:03
09-18 16:55:26.322 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData last_send_previous < last_bg.timestamp:09.18.2016 16:44:03
09-18 16:55:26.352 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData graph_bgs count = 36
09-18 16:55:26.379 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:26.382 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:26.384 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 16:44:09
09-18 16:55:26.385 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 16:44:09
09-18 16:55:26.409 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:26.409 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 16:49:06
09-18 16:55:26.410 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 16:49:06
09-18 16:55:26.413 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:26.414 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 16:59:10
09-18 16:55:26.414 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 16:59:10
09-18 16:55:26.446 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:26.446 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 17:04:07
09-18 16:55:26.447 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 17:04:07
09-18 16:55:26.449 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:26.450 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 17:09:04
09-18 16:55:26.450 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 17:09:04
09-18 16:55:26.456 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:26.457 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 17:14:01
09-18 16:55:26.457 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 17:14:01
09-18 16:55:26.461 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:26.463 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 17:19:02
09-18 16:55:26.463 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 17:19:02
09-18 16:55:26.468 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:26.470 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 17:24:07
09-18 16:55:26.471 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 17:24:07
09-18 16:55:26.491 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:26.491 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 17:29:07
09-18 16:55:26.491 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 17:29:07
09-18 16:55:26.501 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:26.501 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 17:34:00
09-18 16:55:26.501 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 17:34:00
09-18 16:55:26.518 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:26.518 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 17:39:08
09-18 16:55:26.518 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 17:39:08
09-18 16:55:26.555 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:26.555 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 17:44:07
09-18 16:55:26.556 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 17:44:07
09-18 16:55:26.566 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:26.566 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 17:49:07
09-18 16:55:26.567 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 17:49:07
09-18 16:55:26.572 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:26.573 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 17:54:07
09-18 16:55:26.573 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 17:54:07
09-18 16:55:26.578 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:26.579 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 17:59:07
09-18 16:55:26.579 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 17:59:07
09-18 16:55:26.582 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:26.582 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 18:04:06
09-18 16:55:26.595 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 18:04:06
09-18 16:55:26.618 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:26.619 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 18:09:07
09-18 16:55:26.619 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 18:09:07
09-18 16:55:26.628 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:26.628 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 18:14:07
09-18 16:55:26.629 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 18:14:07
09-18 16:55:26.661 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:26.674 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 18:19:07
09-18 16:55:26.676 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 18:19:07
09-18 16:55:26.679 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:26.680 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 18:24:07
09-18 16:55:26.680 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 18:24:07
09-18 16:55:26.683 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:26.683 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 18:29:05
09-18 16:55:26.683 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 18:29:05
09-18 16:55:26.691 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:26.691 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 18:34:04
09-18 16:55:26.691 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 18:34:04
09-18 16:55:26.694 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:26.697 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 18:39:05
09-18 16:55:26.697 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 18:39:05
09-18 16:55:26.700 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:26.700 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 18:44:05
09-18 16:55:26.701 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 18:44:05
09-18 16:55:26.717 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:26.717 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 18:49:06
09-18 16:55:26.718 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 18:49:06
09-18 16:55:26.724 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:26.724 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 18:54:06
09-18 16:55:26.724 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 18:54:06
09-18 16:55:26.748 13545-13551/com.eveningoutpost.dexdrip W/art: Suspending all threads took: 12.054ms
09-18 16:55:26.794 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:26.799 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 18:59:05
09-18 16:55:26.799 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 18:59:05
09-18 16:55:26.805 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:26.806 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 19:04:07
09-18 16:55:26.806 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 19:04:07
09-18 16:55:26.811 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:26.811 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 19:09:06
09-18 16:55:26.812 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 19:09:06
09-18 16:55:26.816 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:26.817 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 19:14:06
09-18 16:55:26.818 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 19:14:06
09-18 16:55:26.827 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:26.828 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 19:19:06
09-18 16:55:26.828 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 19:19:06
09-18 16:55:26.831 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:26.831 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 19:24:06
09-18 16:55:26.832 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 19:24:06
09-18 16:55:26.842 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:26.843 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 19:29:05
09-18 16:55:26.843 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 19:29:05
09-18 16:55:26.848 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:26.848 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 19:34:06
09-18 16:55:26.849 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 19:34:06
09-18 16:55:26.854 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:26.856 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 19:39:06
09-18 16:55:26.856 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 19:39:06
09-18 16:55:26.859 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:26.860 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 19:44:06
09-18 16:55:26.860 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 19:44:06
09-18 16:55:26.860 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: doInBackground send getWearBGData BGs to phone
09-18 16:55:26.882 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData last_send_previous:09.17.2016 19:44:06
09-18 16:55:26.887 13545-13545/com.eveningoutpost.dexdrip D/jamorham listener: send getWearBGData BGs to phone: SUCCESS
09-18 16:55:26.890 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData last_bg.timestamp:09.18.2016 16:44:03
09-18 16:55:26.890 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData last_send_previous < last_bg.timestamp:09.18.2016 16:44:03
09-18 16:55:26.899 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData graph_bgs count = 36
09-18 16:55:26.908 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:26.911 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:26.911 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 19:49:06
09-18 16:55:26.912 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 19:49:06
09-18 16:55:26.925 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:26.926 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 19:54:06
09-18 16:55:26.926 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 19:54:06
09-18 16:55:26.946 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:26.946 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 19:59:06
09-18 16:55:26.947 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 19:59:06
09-18 16:55:26.979 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:26.980 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 20:04:06
09-18 16:55:26.980 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 20:04:06
09-18 16:55:27.098 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.108 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 20:09:06
09-18 16:55:27.109 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 20:09:06
09-18 16:55:27.114 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.114 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 20:14:06
09-18 16:55:27.222 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 20:14:06
09-18 16:55:27.231 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.231 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 20:19:06
09-18 16:55:27.231 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 20:19:06
09-18 16:55:27.245 13545-13551/com.eveningoutpost.dexdrip W/art: Suspending all threads took: 7.293ms
09-18 16:55:27.265 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.266 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 20:24:06
09-18 16:55:27.267 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 20:24:06
09-18 16:55:27.279 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.280 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 20:34:10
09-18 16:55:27.280 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 20:34:10
09-18 16:55:27.283 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.284 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 20:39:06
09-18 16:55:27.284 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 20:39:06
09-18 16:55:27.298 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.298 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 20:44:06
09-18 16:55:27.298 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 20:44:06
09-18 16:55:27.301 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.302 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 20:49:06
09-18 16:55:27.302 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 20:49:06
09-18 16:55:27.327 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.328 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 20:54:06
09-18 16:55:27.329 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 20:54:06
09-18 16:55:27.334 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.334 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 20:59:06
09-18 16:55:27.336 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 20:59:06
09-18 16:55:27.349 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.349 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 21:04:06
09-18 16:55:27.349 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 21:04:06
09-18 16:55:27.352 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.353 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 21:09:06
09-18 16:55:27.353 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 21:09:06
09-18 16:55:27.377 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.393 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 21:14:06
09-18 16:55:27.394 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 21:14:06
09-18 16:55:27.416 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.416 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 21:19:06
09-18 16:55:27.417 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 21:19:06
09-18 16:55:27.420 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.420 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 21:24:06
09-18 16:55:27.420 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 21:24:06
09-18 16:55:27.432 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.433 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 21:44:05
09-18 16:55:27.433 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 21:44:05
09-18 16:55:27.438 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.439 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 21:59:04
09-18 16:55:27.439 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 21:59:04
09-18 16:55:27.457 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.464 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 22:09:09
09-18 16:55:27.464 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 22:09:09
09-18 16:55:27.470 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.470 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 22:44:04
09-18 16:55:27.471 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 22:44:04
09-18 16:55:27.473 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.474 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 22:54:09
09-18 16:55:27.474 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 22:54:09
09-18 16:55:27.498 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.498 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.17.2016 23:04:01
09-18 16:55:27.499 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.17.2016 23:04:01
09-18 16:55:27.505 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.505 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.18.2016 08:49:03
09-18 16:55:27.505 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.18.2016 08:49:03
09-18 16:55:27.516 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.519 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.18.2016 08:59:07
09-18 16:55:27.519 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.18.2016 08:59:07
09-18 16:55:27.533 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.533 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.18.2016 09:09:07
09-18 16:55:27.533 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.18.2016 09:09:07
09-18 16:55:27.547 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.549 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.18.2016 09:18:59
09-18 16:55:27.550 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.18.2016 09:18:59
09-18 16:55:27.557 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.558 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.18.2016 09:29:07
09-18 16:55:27.558 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.18.2016 09:29:07
09-18 16:55:27.571 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.571 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.18.2016 09:39:04
09-18 16:55:27.571 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.18.2016 09:39:04
09-18 16:55:27.585 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.586 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.18.2016 09:59:08
09-18 16:55:27.586 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.18.2016 09:59:08
09-18 16:55:27.598 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.600 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.18.2016 10:29:00
09-18 16:55:27.601 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.18.2016 10:29:00
09-18 16:55:27.604 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.607 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.18.2016 11:09:01
09-18 16:55:27.613 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.18.2016 11:09:01
09-18 16:55:27.618 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.619 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.18.2016 11:43:59
09-18 16:55:27.619 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.18.2016 11:43:59
09-18 16:55:27.631 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.632 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.18.2016 11:54:03
09-18 16:55:27.635 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.18.2016 11:54:03
09-18 16:55:27.635 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: doInBackground send getWearBGData BGs to phone
09-18 16:55:27.652 13545-13545/com.eveningoutpost.dexdrip D/jamorham listener: send getWearBGData BGs to phone: SUCCESS
09-18 16:55:27.657 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData last_send_previous:09.18.2016 11:54:03
09-18 16:55:27.665 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData last_bg.timestamp:09.18.2016 16:44:03
09-18 16:55:27.667 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData last_send_previous < last_bg.timestamp:09.18.2016 16:44:03
09-18 16:55:27.686 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData graph_bgs count = 31
09-18 16:55:27.690 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.703 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.703 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.18.2016 12:04:06
09-18 16:55:27.704 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.18.2016 12:04:06
09-18 16:55:27.714 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.714 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.18.2016 12:34:07
09-18 16:55:27.715 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.18.2016 12:34:07
09-18 16:55:27.730 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.731 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.18.2016 12:39:03
09-18 16:55:27.731 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.18.2016 12:39:03
09-18 16:55:27.736 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.737 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.18.2016 12:43:55
09-18 16:55:27.737 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.18.2016 12:43:55
09-18 16:55:27.749 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.750 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.18.2016 12:49:02
09-18 16:55:27.752 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.18.2016 12:49:02
09-18 16:55:27.761 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.761 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.18.2016 12:54:03
09-18 16:55:27.762 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.18.2016 12:54:03
09-18 16:55:27.768 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.768 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.18.2016 12:59:03
09-18 16:55:27.769 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.18.2016 12:59:03
09-18 16:55:27.779 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.779 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.18.2016 13:14:01
09-18 16:55:27.780 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.18.2016 13:14:01
09-18 16:55:27.783 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.792 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.18.2016 13:33:59
09-18 16:55:27.792 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.18.2016 13:33:59
09-18 16:55:27.798 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.799 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.18.2016 13:44:06
09-18 16:55:27.799 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.18.2016 13:44:06
09-18 16:55:27.812 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.812 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.18.2016 13:49:03
09-18 16:55:27.813 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.18.2016 13:49:03
09-18 16:55:27.824 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.828 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.18.2016 13:59:06
09-18 16:55:27.828 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.18.2016 13:59:06
09-18 16:55:27.831 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.831 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.18.2016 14:04:03
09-18 16:55:27.832 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.18.2016 14:04:03
09-18 16:55:27.846 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.846 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.18.2016 15:09:03
09-18 16:55:27.846 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.18.2016 15:09:03
09-18 16:55:27.891 13545-13555/com.eveningoutpost.dexdrip I/art: Background sticky concurrent mark sweep GC freed 27193(1242KB) AllocSpace objects, 0(0B) LOS objects, 12% free, 9MB/10MB, paused 8.270ms total 31.036ms
09-18 16:55:27.898 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.899 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.18.2016 15:14:03
09-18 16:55:27.899 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.18.2016 15:14:03
09-18 16:55:27.911 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.912 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.18.2016 15:18:56
09-18 16:55:27.912 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.18.2016 15:18:56
09-18 16:55:27.924 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.924 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.18.2016 15:29:06
09-18 16:55:27.925 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.18.2016 15:29:06
09-18 16:55:27.928 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.928 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.18.2016 15:34:02
09-18 16:55:27.928 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.18.2016 15:34:02
09-18 16:55:27.942 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.943 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.18.2016 15:39:02
09-18 16:55:27.943 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.18.2016 15:39:02
09-18 16:55:27.954 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.956 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.18.2016 15:44:02
09-18 16:55:27.956 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.18.2016 15:44:02
09-18 16:55:27.959 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.960 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.18.2016 15:49:02
09-18 16:55:27.960 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.18.2016 15:49:02
09-18 16:55:27.973 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.974 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.18.2016 15:59:06
09-18 16:55:27.974 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.18.2016 15:59:06
09-18 16:55:27.977 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.978 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.18.2016 16:04:03
09-18 16:55:27.978 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.18.2016 16:04:03
09-18 16:55:27.992 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:27.992 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.18.2016 16:09:03
09-18 16:55:27.992 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.18.2016 16:09:03
09-18 16:55:28.020 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:28.021 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.18.2016 16:14:02
09-18 16:55:28.021 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.18.2016 16:14:03
09-18 16:55:28.031 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:28.284 13545-13551/com.eveningoutpost.dexdrip W/art: Suspending all threads took: 40.985ms
09-18 16:55:28.289 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.18.2016 16:19:02
09-18 16:55:28.290 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.18.2016 16:19:02
09-18 16:55:28.315 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:28.316 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.18.2016 16:24:02
09-18 16:55:28.317 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.18.2016 16:24:02
09-18 16:55:28.320 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:28.322 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.18.2016 16:29:02
09-18 16:55:28.322 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.18.2016 16:29:02
09-18 16:55:28.334 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:28.334 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.18.2016 16:34:02
09-18 16:55:28.335 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.18.2016 16:34:02
09-18 16:55:28.350 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:28.350 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.18.2016 16:39:04
09-18 16:55:28.357 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.18.2016 16:39:04
09-18 16:55:28.368 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: dataMap BG GSON: {}
09-18 16:55:28.369 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData bg.timestamp:09.18.2016 16:44:03
09-18 16:55:28.369 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData set last_send_previous:09.18.2016 16:44:03
09-18 16:55:28.369 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: doInBackground send getWearBGData BGs to phone
09-18 16:55:28.384 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData last_send_previous:09.18.2016 16:44:03
09-18 16:55:28.388 13545-13545/com.eveningoutpost.dexdrip D/jamorham listener: send getWearBGData BGs to phone: SUCCESS
09-18 16:55:28.398 13545-13654/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData last_bg.timestamp:09.18.2016 16:44:03
09-18 16:55:31.561 13545-13618/com.eveningoutpost.dexdrip V/WearableLS: bindService: com.eveningoutpost.dexdrip/.ListenerService
09-18 16:55:31.564 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged dataMap={sgvString=84, sgvLevel=0, slopeArrow=→, low=60.0, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474225440515E12, sgvDouble=83.94077621591387, delta=+2.9 mg/dl, battery=88}
09-18 16:55:31.566 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged dataMap dex_txid=4023GU
09-18 16:55:31.566 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged prefs set dex_txid=4023GU
09-18 16:55:31.566 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged dataMap units=mgdl
09-18 16:55:31.567 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged prefs units=mgdl
09-18 16:55:31.567 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged dataMap highMark=140.0 highMark=60.0
09-18 16:55:31.572 13545-13618/com.eveningoutpost.dexdrip V/WearableLS: unbindService: com.eveningoutpost.dexdrip/.ListenerService
09-18 16:55:31.593 13545-13545/com.eveningoutpost.dexdrip D/onDraw: draw
09-18 16:55:50.263 13545-13545/com.eveningoutpost.dexdrip D/onDraw: draw
09-18 16:55:50.305 13545-13545/com.eveningoutpost.dexdrip D/onDraw: draw
09-18 16:59:00.332 13545-13618/com.eveningoutpost.dexdrip V/WearableLS: bindService: com.eveningoutpost.dexdrip/.ListenerService
09-18 16:59:00.335 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged dataMap={sgvString=77, sgvLevel=0, slopeArrow=→, low=60.0, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474232338524E12, sgvDouble=76.9519762159139, delta=+4.6 mg/dl, battery=89}
09-18 16:59:00.335 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged dataMap dex_txid=4023GU
09-18 16:59:00.336 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged prefs set dex_txid=4023GU
09-18 16:59:00.336 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged dataMap units=mgdl
09-18 16:59:00.336 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged prefs units=mgdl
09-18 16:59:00.336 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged dataMap highMark=140.0 highMark=60.0
09-18 16:59:00.344 13545-13618/com.eveningoutpost.dexdrip V/WearableLS: unbindService: com.eveningoutpost.dexdrip/.ListenerService
09-18 16:59:00.365 13545-13545/com.eveningoutpost.dexdrip D/onDraw: draw
09-18 17:00:06.667 13545-13618/com.eveningoutpost.dexdrip V/WearableLS: bindService: com.eveningoutpost.dexdrip/.ListenerService
09-18 17:00:06.670 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged SYNC_DB_PATH=/syncweardb
09-18 17:00:06.670 13545-13618/com.eveningoutpost.dexdrip V/WearableLS: unbindService: com.eveningoutpost.dexdrip/.ListenerService
09-18 17:00:06.691 13545-13618/com.eveningoutpost.dexdrip V/WearableLS: bindService: com.eveningoutpost.dexdrip/.ListenerService
09-18 17:00:06.694 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged path=/nightscout_watch_sensor_data DataMap={dex_txid=4023GU, started_at=1474015200776, sensor_location=Belly (abdomen), latest_battery_level=216, time=1474232405513, uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743}
09-18 17:00:06.694 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncSensorData
09-18 17:00:06.695 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged dataMap dex_txid=4023GU
09-18 17:00:06.695 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged prefs set dex_txid=4023GU
09-18 17:00:06.695 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncSensorData add Sensor for uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743
09-18 17:00:06.707 13545-13618/com.eveningoutpost.dexdrip D/wearSENSOR: InitDb DB exists
09-18 17:00:06.708 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncSensorData add Sensor for uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743 timestamp=1474015200776 timeString=09.16.2016 04:40:00
09-18 17:00:06.708 13545-13618/com.eveningoutpost.dexdrip D/wearSENSOR: getByUuid xDrip_sensor_uuid is fbe9b40f-c277-4dbc-8399-a0ecee2dc743
09-18 17:00:06.710 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncSensorData Sensor already exists with uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743
09-18 17:00:06.713 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged path=/nightscout_watch_cal_data DataMap={first_slope=0.0, first_decay=0.0, possible_bad=true, second_intercept=0.0, uuid=e799ce4b-8398-4d74-a1b0-c819cf96afda, sensor_age_at_time_of_estimation=1.8231039E8, timestamp=1474197511166, adjusted_raw_value=156.512, estimate_bg_at_time_of_calibration=0.0, first_intercept=0.0, bg=137.0, intercept=-61.36802378408612, raw_timestamp=1474197240123, second_slope=0.0, slope=1.3, second_decay=0.0, check_in=false, time=1474232405576, slope_confidence=0.8502307486925766, distance_from_estimate=13.842679070049897, second_scale=0.0, raw_value=156.512, first_scale=0.0, sensor_confidence=0.941672, sensor_uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743, entries=[{second_decay=0.0, first_slope=0.0, first_decay=0.0, check_in=false, slope_confidence=0.8502307486925766, possible_bad=true, second_intercept=0.0, distance_from_estimate=13.842679070049897, uuid=e799ce4b-8398-4d74-a1b0-c819cf96afda, sensor_age_at_time_of_estimation=1.8231039E8, second_scale=0.0, timestamp=1474197511166, adjusted_raw_value=156.512, raw_value=156.512, first_scale=0.0, sensor_confidence=0.941672, estimate_bg_at_time_of_calibration=0.0, first_intercept=0.0, bg=137.0, sensor_uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743, intercept=-61.36802378408612, raw_timestamp=1474197240123, second_slope=0.0, estimate_raw_at_time_of_calibration=152.59078752622008, slope=1.3}, {second_decay=0.0, first_slope=0.0, first_decay=0.0, check_in=false, slope_confidence=0.887951064962112, possible_bad=true, second_intercept=0.0, distance_from_estimate=9.449171718709835, uuid=44aff17c-711f-46f1-8626-16bba96a687b, sensor_age_at_time_of_estimation=1.34416033E8, second_scale=0.0, timestamp=1474149616809, adjusted_raw_value=121.02422170973685, raw_value=111.456, first_scale=0.0, sensor_confidence=0.7655299999999999, estimate_bg_at_time_of_calibration=0.0, first_intercept=0.0, bg=75.0, sensor_uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743, intercept=-82.03549070261708, raw_timestamp=1474148043599, second_slope=0.0, estimate_raw_at_time_of_calibration=119.830078125, slope=1.3110356498707267}, {second_decay=0.0, first_slope=0.0, first_decay=0.0, check_in=false, slope_confidence=0.8172767528840637, possible_bad=true, second_intercept=0.0, distance_from_estimate=12.483972585789502, uuid=36b8e6f2-6fd1-4d45-9498-0c8127254a45, sensor_age_at_time_of_estimation=9.5762145E7, second_scale=0.0, timestamp=1474110962921, adjusted_raw_value=153.10515026, raw_value=128.896, first_scale=0.0, sensor_confidence=0.9023990000000001, estimate_bg_at_time_of_calibration=0.0, first_intercept=0.0, bg=118.0, sensor_uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743, intercept=-46.25698772780598, raw_timestamp=1474110844313, second_slope=0.0, estimate_raw_at_time_of_calibration=152.0898034516722, slope=1.08}], estimate_raw_at_time_of_calibration=152.59078752622008}
09-18 17:00:06.713 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData
09-18 17:00:06.714 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData add Calibration Table entries count=3
09-18 17:00:06.717 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData add Calibration Table entry={second_decay=0.0, first_slope=0.0, first_decay=0.0, check_in=false, slope_confidence=0.8502307486925766, possible_bad=true, second_intercept=0.0, distance_from_estimate=13.842679070049897, uuid=e799ce4b-8398-4d74-a1b0-c819cf96afda, sensor_age_at_time_of_estimation=1.8231039E8, second_scale=0.0, timestamp=1474197511166, adjusted_raw_value=156.512, raw_value=156.512, first_scale=0.0, sensor_confidence=0.941672, estimate_bg_at_time_of_calibration=0.0, first_intercept=0.0, bg=137.0, sensor_uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743, intercept=-61.36802378408612, raw_timestamp=1474197240123, second_slope=0.0, estimate_raw_at_time_of_calibration=152.59078752622008, slope=1.3}
09-18 17:00:06.724 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData Calibration already exists for uuid=e799ce4b-8398-4d74-a1b0-c819cf96afda timestamp=1474197511166
09-18 17:00:06.724 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData add Calibration Table entry={second_decay=0.0, first_slope=0.0, first_decay=0.0, check_in=false, slope_confidence=0.887951064962112, possible_bad=true, second_intercept=0.0, distance_from_estimate=9.449171718709835, uuid=44aff17c-711f-46f1-8626-16bba96a687b, sensor_age_at_time_of_estimation=1.34416033E8, second_scale=0.0, timestamp=1474149616809, adjusted_raw_value=121.02422170973685, raw_value=111.456, first_scale=0.0, sensor_confidence=0.7655299999999999, estimate_bg_at_time_of_calibration=0.0, first_intercept=0.0, bg=75.0, sensor_uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743, intercept=-82.03549070261708, raw_timestamp=1474148043599, second_slope=0.0, estimate_raw_at_time_of_calibration=119.830078125, slope=1.3110356498707267}
09-18 17:00:06.727 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData Calibration already exists for uuid=44aff17c-711f-46f1-8626-16bba96a687b timestamp=1474149616809
09-18 17:00:06.727 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData add Calibration Table entry={second_decay=0.0, first_slope=0.0, first_decay=0.0, check_in=false, slope_confidence=0.8172767528840637, possible_bad=true, second_intercept=0.0, distance_from_estimate=12.483972585789502, uuid=36b8e6f2-6fd1-4d45-9498-0c8127254a45, sensor_age_at_time_of_estimation=9.5762145E7, second_scale=0.0, timestamp=1474110962921, adjusted_raw_value=153.10515026, raw_value=128.896, first_scale=0.0, sensor_confidence=0.9023990000000001, estimate_bg_at_time_of_calibration=0.0, first_intercept=0.0, bg=118.0, sensor_uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743, intercept=-46.25698772780598, raw_timestamp=1474110844313, second_slope=0.0, estimate_raw_at_time_of_calibration=152.0898034516722, slope=1.08}
09-18 17:00:06.730 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData Calibration already exists for uuid=36b8e6f2-6fd1-4d45-9498-0c8127254a45 timestamp=1474110962921
09-18 17:00:06.738 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData cals in wear db count = 5
09-18 17:00:06.788 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData cal: {"adjusted_raw_value":156.512,"bg":137.0,"check_in":false,"distance_from_estimate":13.842679070049897,"estimate_bg_at_time_of_calibration":0.0,"estimate_raw_at_time_of_calibration":152.59078752622008,"first_decay":0.0,"first_intercept":0.0,"first_scale":0.0,"first_slope":0.0,"intercept":-61.36802378408612,"possible_bad":true,"raw_timestamp":1474197240123,"raw_value":156.512,"second_decay":0.0,"second_intercept":0.0,"second_scale":0.0,"second_slope":0.0,"sensor_age_at_time_of_estimation":1.8231039E8,"sensor_confidence":0.941672,"sensor_uuid":"fbe9b40f-c277-4dbc-8399-a0ecee2dc743","slope":1.3,"slope_confidence":0.8502307486925766,"timestamp":1474197511166,"uuid":"e799ce4b-8398-4d74-a1b0-c819cf96afda"}
09-18 17:00:06.812 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData cal: {"adjusted_raw_value":121.02422170973685,"bg":75.0,"check_in":false,"distance_from_estimate":9.449171718709835,"estimate_bg_at_time_of_calibration":0.0,"estimate_raw_at_time_of_calibration":119.830078125,"first_decay":0.0,"first_intercept":0.0,"first_scale":0.0,"first_slope":0.0,"intercept":-82.03549070261708,"possible_bad":true,"raw_timestamp":1474148043599,"raw_value":111.456,"second_decay":0.0,"second_intercept":0.0,"second_scale":0.0,"second_slope":0.0,"sensor_age_at_time_of_estimation":1.34416033E8,"sensor_confidence":0.7655299999999999,"sensor_uuid":"fbe9b40f-c277-4dbc-8399-a0ecee2dc743","slope":1.3110356498707267,"slope_confidence":0.887951064962112,"timestamp":1474149616809,"uuid":"44aff17c-711f-46f1-8626-16bba96a687b"}
09-18 17:00:06.836 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData cal: {"adjusted_raw_value":153.10515026,"bg":118.0,"check_in":false,"distance_from_estimate":12.483972585789502,"estimate_bg_at_time_of_calibration":0.0,"estimate_raw_at_time_of_calibration":152.0898034516722,"first_decay":0.0,"first_intercept":0.0,"first_scale":0.0,"first_slope":0.0,"intercept":-46.25698772780598,"possible_bad":true,"raw_timestamp":1474110844313,"raw_value":128.896,"second_decay":0.0,"second_intercept":0.0,"second_scale":0.0,"second_slope":0.0,"sensor_age_at_time_of_estimation":9.5762145E7,"sensor_confidence":0.9023990000000001,"sensor_uuid":"fbe9b40f-c277-4dbc-8399-a0ecee2dc743","slope":1.08,"slope_confidence":0.8172767528840637,"timestamp":1474110962921,"uuid":"36b8e6f2-6fd1-4d45-9498-0c8127254a45"}
09-18 17:00:06.859 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData cal: {"adjusted_raw_value":161.0084607481579,"bg":115.0,"check_in":false,"distance_from_estimate":0.0,"estimate_bg_at_time_of_calibration":0.0,"estimate_raw_at_time_of_calibration":161.0084607481579,"first_decay":0.0,"first_intercept":0.0,"first_scale":0.0,"first_slope":0.0,"intercept":-78.21015289778947,"possible_bad":true,"raw_timestamp":1474030447803,"raw_value":114.336,"second_decay":0.0,"second_intercept":0.0,"second_scale":0.0,"second_slope":0.0,"sensor_age_at_time_of_estimation":1.5645921E7,"sensor_confidence":0.8950100000000001,"sensor_uuid":"fbe9b40f-c277-4dbc-8399-a0ecee2dc743","slope":1.2,"slope_confidence":0.5,"timestamp":1474030846697,"uuid":"15a8e8da-2eec-4ff2-bfe9-b4c5bab40108"}
09-18 17:00:06.901 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData cal: {"adjusted_raw_value":159.72167535166668,"bg":105.0,"check_in":false,"distance_from_estimate":0.0,"estimate_bg_at_time_of_calibration":0.0,"estimate_raw_at_time_of_calibration":159.1325588207692,"first_decay":0.0,"first_intercept":0.0,"first_scale":0.0,"first_slope":0.0,"intercept":-8.488,"possible_bad":true,"raw_timestamp":1474030745550,"raw_value":113.488,"second_decay":0.0,"second_intercept":0.0,"second_scale":0.0,"second_slope":0.0,"sensor_age_at_time_of_estimation":1.5645864E7,"sensor_confidence":0.86804,"sensor_uuid":"fbe9b40f-c277-4dbc-8399-a0ecee2dc743","slope":1.0,"slope_confidence":0.5,"timestamp":1474030846640,"uuid":"b5159db2-3cff-4df4-84c7-f9c45c797ae4"}
09-18 17:00:06.901 13545-13618/com.eveningoutpost.dexdrip V/WearableLS: unbindService: com.eveningoutpost.dexdrip/.ListenerService
09-18 17:00:13.653 13545-13618/com.eveningoutpost.dexdrip V/WearableLS: bindService: com.eveningoutpost.dexdrip/.ListenerService
09-18 17:00:13.657 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged SYNC_DB_PATH=/syncweardb
09-18 17:00:13.658 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged path=/nightscout_watch_sensor_data DataMap={dex_txid=4023GU, started_at=1474015200776, sensor_location=Belly (abdomen), latest_battery_level=216, time=1474232412357, uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743}
09-18 17:00:13.658 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncSensorData
09-18 17:00:13.658 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged dataMap dex_txid=4023GU
09-18 17:00:13.659 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged prefs set dex_txid=4023GU
09-18 17:00:13.659 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncSensorData add Sensor for uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743
09-18 17:00:13.679 13545-13618/com.eveningoutpost.dexdrip D/wearSENSOR: InitDb DB exists
09-18 17:00:13.680 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncSensorData add Sensor for uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743 timestamp=1474015200776 timeString=09.16.2016 04:40:00
09-18 17:00:13.680 13545-13618/com.eveningoutpost.dexdrip D/wearSENSOR: getByUuid xDrip_sensor_uuid is fbe9b40f-c277-4dbc-8399-a0ecee2dc743
09-18 17:00:13.682 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncSensorData Sensor already exists with uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743
09-18 17:00:13.682 13545-13618/com.eveningoutpost.dexdrip V/WearableLS: unbindService: com.eveningoutpost.dexdrip/.ListenerService
09-18 17:00:13.686 13545-13618/com.eveningoutpost.dexdrip V/WearableLS: bindService: com.eveningoutpost.dexdrip/.ListenerService
09-18 17:00:13.691 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged path=/nightscout_watch_cal_data DataMap={first_slope=0.0, first_decay=0.0, possible_bad=true, second_intercept=0.0, uuid=e799ce4b-8398-4d74-a1b0-c819cf96afda, sensor_age_at_time_of_estimation=1.8231039E8, timestamp=1474197511166, adjusted_raw_value=156.512, estimate_bg_at_time_of_calibration=0.0, first_intercept=0.0, bg=137.0, intercept=-61.36802378408612, raw_timestamp=1474197240123, second_slope=0.0, slope=1.3, second_decay=0.0, check_in=false, time=1474232412428, slope_confidence=0.8502307486925766, distance_from_estimate=13.842679070049897, second_scale=0.0, raw_value=156.512, first_scale=0.0, sensor_confidence=0.941672, sensor_uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743, entries=[{second_decay=0.0, first_slope=0.0, first_decay=0.0, check_in=false, slope_confidence=0.8502307486925766, possible_bad=true, second_intercept=0.0, distance_from_estimate=13.842679070049897, uuid=e799ce4b-8398-4d74-a1b0-c819cf96afda, sensor_age_at_time_of_estimation=1.8231039E8, second_scale=0.0, timestamp=1474197511166, adjusted_raw_value=156.512, raw_value=156.512, first_scale=0.0, sensor_confidence=0.941672, estimate_bg_at_time_of_calibration=0.0, first_intercept=0.0, bg=137.0, sensor_uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743, intercept=-61.36802378408612, raw_timestamp=1474197240123, second_slope=0.0, estimate_raw_at_time_of_calibration=152.59078752622008, slope=1.3}, {second_decay=0.0, first_slope=0.0, first_decay=0.0, check_in=false, slope_confidence=0.887951064962112, possible_bad=true, second_intercept=0.0, distance_from_estimate=9.449171718709835, uuid=44aff17c-711f-46f1-8626-16bba96a687b, sensor_age_at_time_of_estimation=1.34416033E8, second_scale=0.0, timestamp=1474149616809, adjusted_raw_value=121.02422170973685, raw_value=111.456, first_scale=0.0, sensor_confidence=0.7655299999999999, estimate_bg_at_time_of_calibration=0.0, first_intercept=0.0, bg=75.0, sensor_uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743, intercept=-82.03549070261708, raw_timestamp=1474148043599, second_slope=0.0, estimate_raw_at_time_of_calibration=119.830078125, slope=1.3110356498707267}, {second_decay=0.0, first_slope=0.0, first_decay=0.0, check_in=false, slope_confidence=0.8172767528840637, possible_bad=true, second_intercept=0.0, distance_from_estimate=12.483972585789502, uuid=36b8e6f2-6fd1-4d45-9498-0c8127254a45, sensor_age_at_time_of_estimation=9.5762145E7, second_scale=0.0, timestamp=1474110962921, adjusted_raw_value=153.10515026, raw_value=128.896, first_scale=0.0, sensor_confidence=0.9023990000000001, estimate_bg_at_time_of_calibration=0.0, first_intercept=0.0, bg=118.0, sensor_uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743, intercept=-46.25698772780598, raw_timestamp=1474110844313, second_slope=0.0, estimate_raw_at_time_of_calibration=152.0898034516722, slope=1.08}], estimate_raw_at_time_of_calibration=152.59078752622008}
09-18 17:00:13.692 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData
09-18 17:00:13.693 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData add Calibration Table entries count=3
09-18 17:00:13.695 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData add Calibration Table entry={second_decay=0.0, first_slope=0.0, first_decay=0.0, check_in=false, slope_confidence=0.8502307486925766, possible_bad=true, second_intercept=0.0, distance_from_estimate=13.842679070049897, uuid=e799ce4b-8398-4d74-a1b0-c819cf96afda, sensor_age_at_time_of_estimation=1.8231039E8, second_scale=0.0, timestamp=1474197511166, adjusted_raw_value=156.512, raw_value=156.512, first_scale=0.0, sensor_confidence=0.941672, estimate_bg_at_time_of_calibration=0.0, first_intercept=0.0, bg=137.0, sensor_uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743, intercept=-61.36802378408612, raw_timestamp=1474197240123, second_slope=0.0, estimate_raw_at_time_of_calibration=152.59078752622008, slope=1.3}
09-18 17:00:13.698 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData Calibration already exists for uuid=e799ce4b-8398-4d74-a1b0-c819cf96afda timestamp=1474197511166
09-18 17:00:13.702 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData add Calibration Table entry={second_decay=0.0, first_slope=0.0, first_decay=0.0, check_in=false, slope_confidence=0.887951064962112, possible_bad=true, second_intercept=0.0, distance_from_estimate=9.449171718709835, uuid=44aff17c-711f-46f1-8626-16bba96a687b, sensor_age_at_time_of_estimation=1.34416033E8, second_scale=0.0, timestamp=1474149616809, adjusted_raw_value=121.02422170973685, raw_value=111.456, first_scale=0.0, sensor_confidence=0.7655299999999999, estimate_bg_at_time_of_calibration=0.0, first_intercept=0.0, bg=75.0, sensor_uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743, intercept=-82.03549070261708, raw_timestamp=1474148043599, second_slope=0.0, estimate_raw_at_time_of_calibration=119.830078125, slope=1.3110356498707267}
09-18 17:00:13.707 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData Calibration already exists for uuid=44aff17c-711f-46f1-8626-16bba96a687b timestamp=1474149616809
09-18 17:00:13.707 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData add Calibration Table entry={second_decay=0.0, first_slope=0.0, first_decay=0.0, check_in=false, slope_confidence=0.8172767528840637, possible_bad=true, second_intercept=0.0, distance_from_estimate=12.483972585789502, uuid=36b8e6f2-6fd1-4d45-9498-0c8127254a45, sensor_age_at_time_of_estimation=9.5762145E7, second_scale=0.0, timestamp=1474110962921, adjusted_raw_value=153.10515026, raw_value=128.896, first_scale=0.0, sensor_confidence=0.9023990000000001, estimate_bg_at_time_of_calibration=0.0, first_intercept=0.0, bg=118.0, sensor_uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743, intercept=-46.25698772780598, raw_timestamp=1474110844313, second_slope=0.0, estimate_raw_at_time_of_calibration=152.0898034516722, slope=1.08}
09-18 17:00:13.710 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData Calibration already exists for uuid=36b8e6f2-6fd1-4d45-9498-0c8127254a45 timestamp=1474110962921
09-18 17:00:13.716 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData cals in wear db count = 5
09-18 17:00:13.742 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData cal: {"adjusted_raw_value":156.512,"bg":137.0,"check_in":false,"distance_from_estimate":13.842679070049897,"estimate_bg_at_time_of_calibration":0.0,"estimate_raw_at_time_of_calibration":152.59078752622008,"first_decay":0.0,"first_intercept":0.0,"first_scale":0.0,"first_slope":0.0,"intercept":-61.36802378408612,"possible_bad":true,"raw_timestamp":1474197240123,"raw_value":156.512,"second_decay":0.0,"second_intercept":0.0,"second_scale":0.0,"second_slope":0.0,"sensor_age_at_time_of_estimation":1.8231039E8,"sensor_confidence":0.941672,"sensor_uuid":"fbe9b40f-c277-4dbc-8399-a0ecee2dc743","slope":1.3,"slope_confidence":0.8502307486925766,"timestamp":1474197511166,"uuid":"e799ce4b-8398-4d74-a1b0-c819cf96afda"}
09-18 17:00:13.765 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData cal: {"adjusted_raw_value":121.02422170973685,"bg":75.0,"check_in":false,"distance_from_estimate":9.449171718709835,"estimate_bg_at_time_of_calibration":0.0,"estimate_raw_at_time_of_calibration":119.830078125,"first_decay":0.0,"first_intercept":0.0,"first_scale":0.0,"first_slope":0.0,"intercept":-82.03549070261708,"possible_bad":true,"raw_timestamp":1474148043599,"raw_value":111.456,"second_decay":0.0,"second_intercept":0.0,"second_scale":0.0,"second_slope":0.0,"sensor_age_at_time_of_estimation":1.34416033E8,"sensor_confidence":0.7655299999999999,"sensor_uuid":"fbe9b40f-c277-4dbc-8399-a0ecee2dc743","slope":1.3110356498707267,"slope_confidence":0.887951064962112,"timestamp":1474149616809,"uuid":"44aff17c-711f-46f1-8626-16bba96a687b"}
09-18 17:00:13.807 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData cal: {"adjusted_raw_value":153.10515026,"bg":118.0,"check_in":false,"distance_from_estimate":12.483972585789502,"estimate_bg_at_time_of_calibration":0.0,"estimate_raw_at_time_of_calibration":152.0898034516722,"first_decay":0.0,"first_intercept":0.0,"first_scale":0.0,"first_slope":0.0,"intercept":-46.25698772780598,"possible_bad":true,"raw_timestamp":1474110844313,"raw_value":128.896,"second_decay":0.0,"second_intercept":0.0,"second_scale":0.0,"second_slope":0.0,"sensor_age_at_time_of_estimation":9.5762145E7,"sensor_confidence":0.9023990000000001,"sensor_uuid":"fbe9b40f-c277-4dbc-8399-a0ecee2dc743","slope":1.08,"slope_confidence":0.8172767528840637,"timestamp":1474110962921,"uuid":"36b8e6f2-6fd1-4d45-9498-0c8127254a45"}
09-18 17:00:13.832 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData cal: {"adjusted_raw_value":161.0084607481579,"bg":115.0,"check_in":false,"distance_from_estimate":0.0,"estimate_bg_at_time_of_calibration":0.0,"estimate_raw_at_time_of_calibration":161.0084607481579,"first_decay":0.0,"first_intercept":0.0,"first_scale":0.0,"first_slope":0.0,"intercept":-78.21015289778947,"possible_bad":true,"raw_timestamp":1474030447803,"raw_value":114.336,"second_decay":0.0,"second_intercept":0.0,"second_scale":0.0,"second_slope":0.0,"sensor_age_at_time_of_estimation":1.5645921E7,"sensor_confidence":0.8950100000000001,"sensor_uuid":"fbe9b40f-c277-4dbc-8399-a0ecee2dc743","slope":1.2,"slope_confidence":0.5,"timestamp":1474030846697,"uuid":"15a8e8da-2eec-4ff2-bfe9-b4c5bab40108"}
09-18 17:00:13.859 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData cal: {"adjusted_raw_value":159.72167535166668,"bg":105.0,"check_in":false,"distance_from_estimate":0.0,"estimate_bg_at_time_of_calibration":0.0,"estimate_raw_at_time_of_calibration":159.1325588207692,"first_decay":0.0,"first_intercept":0.0,"first_scale":0.0,"first_slope":0.0,"intercept":-8.488,"possible_bad":true,"raw_timestamp":1474030745550,"raw_value":113.488,"second_decay":0.0,"second_intercept":0.0,"second_scale":0.0,"second_slope":0.0,"sensor_age_at_time_of_estimation":1.5645864E7,"sensor_confidence":0.86804,"sensor_uuid":"fbe9b40f-c277-4dbc-8399-a0ecee2dc743","slope":1.0,"slope_confidence":0.5,"timestamp":1474030846640,"uuid":"b5159db2-3cff-4df4-84c7-f9c45c797ae4"}
09-18 17:00:13.859 13545-13618/com.eveningoutpost.dexdrip V/WearableLS: unbindService: com.eveningoutpost.dexdrip/.ListenerService
09-18 17:00:15.200 13545-13618/com.eveningoutpost.dexdrip V/WearableLS: bindService: com.eveningoutpost.dexdrip/.ListenerService
09-18 17:00:15.202 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged SYNC_DB_PATH=/syncweardb
09-18 17:00:15.202 13545-13618/com.eveningoutpost.dexdrip V/WearableLS: unbindService: com.eveningoutpost.dexdrip/.ListenerService
09-18 17:00:15.229 13545-13618/com.eveningoutpost.dexdrip V/WearableLS: bindService: com.eveningoutpost.dexdrip/.ListenerService
09-18 17:00:15.231 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged path=/nightscout_watch_sensor_data DataMap={dex_txid=4023GU, started_at=1474015200776, sensor_location=Belly (abdomen), latest_battery_level=216, time=1474232414573, uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743}
09-18 17:00:15.232 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncSensorData
09-18 17:00:15.232 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged dataMap dex_txid=4023GU
09-18 17:00:15.232 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged prefs set dex_txid=4023GU
09-18 17:00:15.232 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncSensorData add Sensor for uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743
09-18 17:00:15.243 13545-13618/com.eveningoutpost.dexdrip D/wearSENSOR: InitDb DB exists
09-18 17:00:15.248 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncSensorData add Sensor for uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743 timestamp=1474015200776 timeString=09.16.2016 04:40:00
09-18 17:00:15.248 13545-13618/com.eveningoutpost.dexdrip D/wearSENSOR: getByUuid xDrip_sensor_uuid is fbe9b40f-c277-4dbc-8399-a0ecee2dc743
09-18 17:00:15.253 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncSensorData Sensor already exists with uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743
09-18 17:00:15.253 13545-13618/com.eveningoutpost.dexdrip V/WearableLS: unbindService: com.eveningoutpost.dexdrip/.ListenerService
09-18 17:00:15.285 13545-13618/com.eveningoutpost.dexdrip V/WearableLS: bindService: com.eveningoutpost.dexdrip/.ListenerService
09-18 17:00:15.294 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged path=/nightscout_watch_cal_data DataMap={first_slope=0.0, first_decay=0.0, possible_bad=true, second_intercept=0.0, uuid=e799ce4b-8398-4d74-a1b0-c819cf96afda, sensor_age_at_time_of_estimation=1.8231039E8, timestamp=1474197511166, adjusted_raw_value=156.512, estimate_bg_at_time_of_calibration=0.0, first_intercept=0.0, bg=137.0, intercept=-61.36802378408612, raw_timestamp=1474197240123, second_slope=0.0, slope=1.3, second_decay=0.0, check_in=false, time=1474232414635, slope_confidence=0.8502307486925766, distance_from_estimate=13.842679070049897, second_scale=0.0, raw_value=156.512, first_scale=0.0, sensor_confidence=0.941672, sensor_uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743, entries=[{second_decay=0.0, first_slope=0.0, first_decay=0.0, check_in=false, slope_confidence=0.8502307486925766, possible_bad=true, second_intercept=0.0, distance_from_estimate=13.842679070049897, uuid=e799ce4b-8398-4d74-a1b0-c819cf96afda, sensor_age_at_time_of_estimation=1.8231039E8, second_scale=0.0, timestamp=1474197511166, adjusted_raw_value=156.512, raw_value=156.512, first_scale=0.0, sensor_confidence=0.941672, estimate_bg_at_time_of_calibration=0.0, first_intercept=0.0, bg=137.0, sensor_uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743, intercept=-61.36802378408612, raw_timestamp=1474197240123, second_slope=0.0, estimate_raw_at_time_of_calibration=152.59078752622008, slope=1.3}, {second_decay=0.0, first_slope=0.0, first_decay=0.0, check_in=false, slope_confidence=0.887951064962112, possible_bad=true, second_intercept=0.0, distance_from_estimate=9.449171718709835, uuid=44aff17c-711f-46f1-8626-16bba96a687b, sensor_age_at_time_of_estimation=1.34416033E8, second_scale=0.0, timestamp=1474149616809, adjusted_raw_value=121.02422170973685, raw_value=111.456, first_scale=0.0, sensor_confidence=0.7655299999999999, estimate_bg_at_time_of_calibration=0.0, first_intercept=0.0, bg=75.0, sensor_uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743, intercept=-82.03549070261708, raw_timestamp=1474148043599, second_slope=0.0, estimate_raw_at_time_of_calibration=119.830078125, slope=1.3110356498707267}, {second_decay=0.0, first_slope=0.0, first_decay=0.0, check_in=false, slope_confidence=0.8172767528840637, possible_bad=true, second_intercept=0.0, distance_from_estimate=12.483972585789502, uuid=36b8e6f2-6fd1-4d45-9498-0c8127254a45, sensor_age_at_time_of_estimation=9.5762145E7, second_scale=0.0, timestamp=1474110962921, adjusted_raw_value=153.10515026, raw_value=128.896, first_scale=0.0, sensor_confidence=0.9023990000000001, estimate_bg_at_time_of_calibration=0.0, first_intercept=0.0, bg=118.0, sensor_uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743, intercept=-46.25698772780598, raw_timestamp=1474110844313, second_slope=0.0, estimate_raw_at_time_of_calibration=152.0898034516722, slope=1.08}], estimate_raw_at_time_of_calibration=152.59078752622008}
09-18 17:00:15.294 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData
09-18 17:00:15.296 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData add Calibration Table entries count=3
09-18 17:00:15.299 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData add Calibration Table entry={second_decay=0.0, first_slope=0.0, first_decay=0.0, check_in=false, slope_confidence=0.8502307486925766, possible_bad=true, second_intercept=0.0, distance_from_estimate=13.842679070049897, uuid=e799ce4b-8398-4d74-a1b0-c819cf96afda, sensor_age_at_time_of_estimation=1.8231039E8, second_scale=0.0, timestamp=1474197511166, adjusted_raw_value=156.512, raw_value=156.512, first_scale=0.0, sensor_confidence=0.941672, estimate_bg_at_time_of_calibration=0.0, first_intercept=0.0, bg=137.0, sensor_uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743, intercept=-61.36802378408612, raw_timestamp=1474197240123, second_slope=0.0, estimate_raw_at_time_of_calibration=152.59078752622008, slope=1.3}
09-18 17:00:15.302 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData Calibration already exists for uuid=e799ce4b-8398-4d74-a1b0-c819cf96afda timestamp=1474197511166
09-18 17:00:15.303 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData add Calibration Table entry={second_decay=0.0, first_slope=0.0, first_decay=0.0, check_in=false, slope_confidence=0.887951064962112, possible_bad=true, second_intercept=0.0, distance_from_estimate=9.449171718709835, uuid=44aff17c-711f-46f1-8626-16bba96a687b, sensor_age_at_time_of_estimation=1.34416033E8, second_scale=0.0, timestamp=1474149616809, adjusted_raw_value=121.02422170973685, raw_value=111.456, first_scale=0.0, sensor_confidence=0.7655299999999999, estimate_bg_at_time_of_calibration=0.0, first_intercept=0.0, bg=75.0, sensor_uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743, intercept=-82.03549070261708, raw_timestamp=1474148043599, second_slope=0.0, estimate_raw_at_time_of_calibration=119.830078125, slope=1.3110356498707267}
09-18 17:00:15.312 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData Calibration already exists for uuid=44aff17c-711f-46f1-8626-16bba96a687b timestamp=1474149616809
09-18 17:00:15.313 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData add Calibration Table entry={second_decay=0.0, first_slope=0.0, first_decay=0.0, check_in=false, slope_confidence=0.8172767528840637, possible_bad=true, second_intercept=0.0, distance_from_estimate=12.483972585789502, uuid=36b8e6f2-6fd1-4d45-9498-0c8127254a45, sensor_age_at_time_of_estimation=9.5762145E7, second_scale=0.0, timestamp=1474110962921, adjusted_raw_value=153.10515026, raw_value=128.896, first_scale=0.0, sensor_confidence=0.9023990000000001, estimate_bg_at_time_of_calibration=0.0, first_intercept=0.0, bg=118.0, sensor_uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743, intercept=-46.25698772780598, raw_timestamp=1474110844313, second_slope=0.0, estimate_raw_at_time_of_calibration=152.0898034516722, slope=1.08}
09-18 17:00:15.316 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData Calibration already exists for uuid=36b8e6f2-6fd1-4d45-9498-0c8127254a45 timestamp=1474110962921
09-18 17:00:15.321 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData cals in wear db count = 5
09-18 17:00:15.366 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData cal: {"adjusted_raw_value":156.512,"bg":137.0,"check_in":false,"distance_from_estimate":13.842679070049897,"estimate_bg_at_time_of_calibration":0.0,"estimate_raw_at_time_of_calibration":152.59078752622008,"first_decay":0.0,"first_intercept":0.0,"first_scale":0.0,"first_slope":0.0,"intercept":-61.36802378408612,"possible_bad":true,"raw_timestamp":1474197240123,"raw_value":156.512,"second_decay":0.0,"second_intercept":0.0,"second_scale":0.0,"second_slope":0.0,"sensor_age_at_time_of_estimation":1.8231039E8,"sensor_confidence":0.941672,"sensor_uuid":"fbe9b40f-c277-4dbc-8399-a0ecee2dc743","slope":1.3,"slope_confidence":0.8502307486925766,"timestamp":1474197511166,"uuid":"e799ce4b-8398-4d74-a1b0-c819cf96afda"}
09-18 17:00:15.390 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData cal: {"adjusted_raw_value":121.02422170973685,"bg":75.0,"check_in":false,"distance_from_estimate":9.449171718709835,"estimate_bg_at_time_of_calibration":0.0,"estimate_raw_at_time_of_calibration":119.830078125,"first_decay":0.0,"first_intercept":0.0,"first_scale":0.0,"first_slope":0.0,"intercept":-82.03549070261708,"possible_bad":true,"raw_timestamp":1474148043599,"raw_value":111.456,"second_decay":0.0,"second_intercept":0.0,"second_scale":0.0,"second_slope":0.0,"sensor_age_at_time_of_estimation":1.34416033E8,"sensor_confidence":0.7655299999999999,"sensor_uuid":"fbe9b40f-c277-4dbc-8399-a0ecee2dc743","slope":1.3110356498707267,"slope_confidence":0.887951064962112,"timestamp":1474149616809,"uuid":"44aff17c-711f-46f1-8626-16bba96a687b"}
09-18 17:00:15.413 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData cal: {"adjusted_raw_value":153.10515026,"bg":118.0,"check_in":false,"distance_from_estimate":12.483972585789502,"estimate_bg_at_time_of_calibration":0.0,"estimate_raw_at_time_of_calibration":152.0898034516722,"first_decay":0.0,"first_intercept":0.0,"first_scale":0.0,"first_slope":0.0,"intercept":-46.25698772780598,"possible_bad":true,"raw_timestamp":1474110844313,"raw_value":128.896,"second_decay":0.0,"second_intercept":0.0,"second_scale":0.0,"second_slope":0.0,"sensor_age_at_time_of_estimation":9.5762145E7,"sensor_confidence":0.9023990000000001,"sensor_uuid":"fbe9b40f-c277-4dbc-8399-a0ecee2dc743","slope":1.08,"slope_confidence":0.8172767528840637,"timestamp":1474110962921,"uuid":"36b8e6f2-6fd1-4d45-9498-0c8127254a45"}
09-18 17:00:15.452 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData cal: {"adjusted_raw_value":161.0084607481579,"bg":115.0,"check_in":false,"distance_from_estimate":0.0,"estimate_bg_at_time_of_calibration":0.0,"estimate_raw_at_time_of_calibration":161.0084607481579,"first_decay":0.0,"first_intercept":0.0,"first_scale":0.0,"first_slope":0.0,"intercept":-78.21015289778947,"possible_bad":true,"raw_timestamp":1474030447803,"raw_value":114.336,"second_decay":0.0,"second_intercept":0.0,"second_scale":0.0,"second_slope":0.0,"sensor_age_at_time_of_estimation":1.5645921E7,"sensor_confidence":0.8950100000000001,"sensor_uuid":"fbe9b40f-c277-4dbc-8399-a0ecee2dc743","slope":1.2,"slope_confidence":0.5,"timestamp":1474030846697,"uuid":"15a8e8da-2eec-4ff2-bfe9-b4c5bab40108"}
09-18 17:00:15.478 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData cal: {"adjusted_raw_value":159.72167535166668,"bg":105.0,"check_in":false,"distance_from_estimate":0.0,"estimate_bg_at_time_of_calibration":0.0,"estimate_raw_at_time_of_calibration":159.1325588207692,"first_decay":0.0,"first_intercept":0.0,"first_scale":0.0,"first_slope":0.0,"intercept":-8.488,"possible_bad":true,"raw_timestamp":1474030745550,"raw_value":113.488,"second_decay":0.0,"second_intercept":0.0,"second_scale":0.0,"second_slope":0.0,"sensor_age_at_time_of_estimation":1.5645864E7,"sensor_confidence":0.86804,"sensor_uuid":"fbe9b40f-c277-4dbc-8399-a0ecee2dc743","slope":1.0,"slope_confidence":0.5,"timestamp":1474030846640,"uuid":"b5159db2-3cff-4df4-84c7-f9c45c797ae4"}
09-18 17:00:15.478 13545-13618/com.eveningoutpost.dexdrip V/WearableLS: unbindService: com.eveningoutpost.dexdrip/.ListenerService
09-18 17:00:44.591 13545-13545/com.eveningoutpost.dexdrip D/BIGChart: missedReadingAlert Enter minutes_since 1 call requestData if >= 4 minutes mod 5
09-18 17:00:44.607 13545-13545/com.eveningoutpost.dexdrip D/onDraw: draw
09-18 17:00:44.627 13545-13545/com.eveningoutpost.dexdrip D/onDraw: draw
09-18 17:00:45.010 13545-13997/com.eveningoutpost.dexdrip D/onDraw: draw
09-18 17:01:45.006 13545-18083/com.eveningoutpost.dexdrip D/BIGChart: missedReadingAlert Enter minutes_since 2 call requestData if >= 4 minutes mod 5
09-18 17:01:45.022 13545-18083/com.eveningoutpost.dexdrip D/onDraw: draw
09-18 17:02:30.225 13545-13545/com.eveningoutpost.dexdrip D/BIGChart: missedReadingAlert Enter minutes_since 3 call requestData if >= 4 minutes mod 5
09-18 17:02:30.233 13545-13545/com.eveningoutpost.dexdrip D/onDraw: draw
09-18 17:03:33.324 13545-13545/com.eveningoutpost.dexdrip D/BIGChart: missedReadingAlert Enter minutes_since 4 call requestData if >= 4 minutes mod 5
09-18 17:03:33.385 13545-13545/com.eveningoutpost.dexdrip D/onDraw: draw
09-18 17:03:33.419 13545-13545/com.eveningoutpost.dexdrip D/onDraw: draw
09-18 17:03:33.454 13545-13545/com.eveningoutpost.dexdrip D/wearSENSOR: InitDb DB exists
09-18 17:03:33.454 13545-13545/com.eveningoutpost.dexdrip D/jamorham listener: DataRequester: /nightscout_watch_data_resend
09-18 17:03:33.468 13545-18850/com.eveningoutpost.dexdrip D/jamorham listener: Not connected for sending
09-18 17:03:33.565 13545-13545/com.eveningoutpost.dexdrip D/wearSENSOR: InitDb DB exists
09-18 17:03:33.565 13545-13545/com.eveningoutpost.dexdrip D/jamorham listener: DataRequester: /nightscout_watch_data_resend
09-18 17:03:33.590 13545-18851/com.eveningoutpost.dexdrip D/jamorham listener: doInBackground connected. NodeApi.GetConnectedNodesResult await count=1
09-18 17:03:33.590 13545-18851/com.eveningoutpost.dexdrip D/jamorham listener: stopBtG5Service
09-18 17:03:33.599 13545-18851/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData last_send_previous:09.18.2016 16:44:03
09-18 17:03:33.601 13545-18851/com.eveningoutpost.dexdrip D/jamorham listener: getWearBGData last_bg.timestamp:09.18.2016 16:44:03
09-18 17:03:34.022 13545-18083/com.eveningoutpost.dexdrip D/onDraw: draw
09-18 17:03:35.376 13545-13618/com.eveningoutpost.dexdrip V/WearableLS: bindService: com.eveningoutpost.dexdrip/.ListenerService
09-18 17:03:35.440 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged dataMap={sgvString=77, sgvLevel=0, slopeArrow=→, low=60.0, entries=[{sgvString=77, sgvLevel=0, slopeArrow=→, low=60.0, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474232338524E12, sgvDouble=76.9519762159139, delta=+4.6 mg/dl, battery=90}, {sgvString=59, sgvLevel=-1, slopeArrow=→, low=60.0, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474231144001E12, sgvDouble=58.52317621591389, delta=+4.6 mg/dl, battery=90}, {sgvString=56, sgvLevel=-1, slopeArrow=→, low=60.0, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474230842947E12, sgvDouble=55.59037621591389, delta=+4.6 mg/dl, battery=90}, {sgvString=51, sgvLevel=-1, slopeArrow=→, low=60.0, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.47423054281E12, sgvDouble=51.40957621591387, delta=+4.6 mg/dl, battery=90}, {sgvString=49, sgvLevel=-1, slopeArrow=→, low=60.0, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.4742302428E12, sgvDouble=49.01757621591389, delta=+4.6 mg/dl, battery=90}, {sgvString=48, sgvLevel=-1, slopeArrow=→, low=60.0, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474229942875E12, sgvDouble=48.31037621591388, delta=+4.6 mg/dl, battery=90}, {sgvString=49, sgvLevel=-1, slopeArrow=→, low=60.0, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474229642999E12, sgvDouble=48.60157621591388, delta=+4.6 mg/dl, battery=90}, {sgvString=49, sgvLevel=-1, slopeArrow=→, low=60.0, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474229343674E12, sgvDouble=49.10077621591388, delta=+4.6 mg/dl, battery=90}, {sgvString=51, sgvLevel=-1, slopeArrow=→, low=60.0, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474229043059E12, sgvDouble=50.723176215913895, delta=+4.6 mg/dl, battery=90}, {sgvString=52, sgvLevel=-1, slopeArrow=→, low=60.0, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474228746452E12, sgvDouble=51.783976215913896, delta=+4.6 mg/dl, battery=90}, {sgvString=57, sgvLevel=-1, slopeArrow=→, low=60.0, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.47422754295E12, sgvDouble=57.337576215913884, delta=+4.6 mg/dl, battery=90}, {sgvString=62, sgvLevel=0, slopeArrow=→, low=60.0, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474227242997E12, sgvDouble=62.22557621591389, delta=+4.6 mg/dl, battery=90}, {sgvString=65, sgvLevel=0, slopeArrow=→, low=60.0, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474226946752E12, sgvDouble=65.03357621591388, delta=+4.6 mg/dl, battery=90}, {sgvString=73, sgvLevel=0, slopeArrow=→, low=60.0, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.47422633611E12, sgvDouble=72.9167762159139, delta=+4.6 mg/dl, battery=90}, {sgvString=76, sgvLevel=0, slopeArrow=→, low=60.0, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474226043224E12, sgvDouble=76.09917621591387, delta=+4.6 mg/dl, battery=90}, {sgvString=80, sgvLevel=0, slopeArrow=→, low=60.0, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474225743132E12, sgvDouble=79.59357621591388, delta=+4.6 mg/dl, battery=90}, {sgvString=84, sgvLevel=0, slopeArrow=→, low=60.0, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474225440515E12, sgvDouble=83.94077621591387, delta=+4.6 mg/dl, battery=90}, {sgvString=92, sgvLevel=0, slopeArrow=→, low=60.0, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474224839109E12, sgvDouble=92.15677621591388, delta=+4.6 mg/dl, battery=90}, {sgvString=99, sgvLevel=0, slopeArrow=→, low=60.0, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.47422423614E12, sgvDouble=98.50077621591387, delta=+4.6 mg/dl, battery=90}, {sgvString=101, sgvLevel=0, slopeArrow=↘, low=60.0, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474223936315E12, sgvDouble=101.20477621591388, delta=+4.6 mg/dl
09-18 17:03:35.441 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged dataMap dex_txid=4023GU
09-18 17:03:35.441 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged prefs set dex_txid=4023GU
09-18 17:03:35.441 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged dataMap units=mgdl
09-18 17:03:35.442 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged prefs units=mgdl
09-18 17:03:35.443 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged dataMap highMark=140.0 highMark=60.0
09-18 17:03:35.466 13545-13618/com.eveningoutpost.dexdrip V/WearableLS: unbindService: com.eveningoutpost.dexdrip/.ListenerService
09-18 17:03:35.513 13545-13545/com.eveningoutpost.dexdrip D/onDraw: draw
09-18 17:03:35.997 13545-13545/com.eveningoutpost.dexdrip D/onDraw: draw
09-18 17:03:58.137 13545-13618/com.eveningoutpost.dexdrip V/WearableLS: bindService: com.eveningoutpost.dexdrip/.ListenerService
09-18 17:03:58.140 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged dataMap={sgvString=80, sgvLevel=0, slopeArrow=→, low=60.0, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474232636482E12, sgvDouble=79.88477621591389, delta=+3 mg/dl, battery=90}
09-18 17:03:58.141 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged dataMap dex_txid=4023GU
09-18 17:03:58.141 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged prefs set dex_txid=4023GU
09-18 17:03:58.141 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged dataMap units=mgdl
09-18 17:03:58.141 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged prefs units=mgdl
09-18 17:03:58.141 13545-13618/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged dataMap highMark=140.0 highMark=60.0
09-18 17:03:58.149 13545-13618/com.eveningoutpost.dexdrip V/WearableLS: unbindService: com.eveningoutpost.dexdrip/.ListenerService
09-18 17:03:58.161 13545-13545/com.eveningoutpost.dexdrip D/onDraw: draw
09-18 17:04:34.005 13545-13997/com.eveningoutpost.dexdrip D/BIGChart: missedReadingAlert Enter minutes_since 0 call requestData if >= 4 minutes mod 5
09-18 17:04:34.023 13545-13997/com.eveningoutpost.dexdrip D/onDraw: draw
09-16 08:54:07.757 6016-6029/com.eveningoutpost.dexdrip D/BluetoothGatt: setCharacteristicNotification() - uuid: f8083534-849e-531c-c594-30f1f86a4ea5 enable: false
09-16 08:54:07.767 6016-6029/com.eveningoutpost.dexdrip D/BluetoothGatt: cancelOpen() - device: FF:92:A0:57:7C:E9
09-16 08:54:07.807 6016-6029/com.eveningoutpost.dexdrip I/timestamp create: 1474030447803
09-16 08:54:07.817 6016-6029/com.eveningoutpost.dexdrip D/BgReading: create: No calibration yet
09-16 08:54:07.817 6016-6029/com.eveningoutpost.dexdrip I/BgReading: calculateAgeAdjustedRawValue: RAW VALUE ADJUSTMENT FROM:114.336 TO: 161.0084607481579
09-16 08:54:07.897 6016-6029/com.eveningoutpost.dexdrip I/BgReading: find_new_curve: Not enough data to calculate parabolic rates - assume static data
09-16 08:54:07.897 6016-6029/com.eveningoutpost.dexdrip I/BgReading: 0.0x^2 + 0.0x + 0.0
09-16 08:54:07.917 6016-6029/com.eveningoutpost.dexdrip I/BgReading: find_new_raw_curve: Not enough data to calculate parabolic rates - assume static data
09-16 08:54:07.927 6016-6029/com.eveningoutpost.dexdrip W/BgReading: NO BG? COULDNT FIND SLOPE!
09-16 08:54:07.967 6016-6029/com.eveningoutpost.dexdrip I/BG GSON:: {"a":0.0,"age_adjusted_raw_value":161.0084607481579,"b":0.0,"c":0.0,"calculated_value":0.0,"calculated_value_slope":0.0,"calibration_flag":false,"filtered_calculated_value":0.0,"filtered_data":114.24,"hide_slope":false,"ra":0.0,"raw_calculated":0.0,"raw_data":114.336,"rb":0.0,"rc":34.232,"sensor_uuid":"fbe9b40f-c277-4dbc-8399-a0ecee2dc743","synced":false,"time_since_sensor_started":1.5247027E7,"timestamp":1474030447803,"uuid":"f97fc50b-77eb-4e95-8fb1-3a2d975e3c57"}
09-16 08:54:07.967 6016-6029/com.eveningoutpost.dexdrip D/Dex raw_data: 114336.0
09-16 08:54:07.967 6016-6029/com.eveningoutpost.dexdrip D/Dex filtered_data: 0.0
09-16 08:54:07.967 6016-6029/com.eveningoutpost.dexdrip D/Dex sensor_battery_level: 216.0
09-16 08:54:07.967 6016-6029/com.eveningoutpost.dexdrip D/Dex timestamp: 1.474030447803E12
09-16 08:54:07.967 6016-6028/com.eveningoutpost.dexdrip D/BluetoothGatt: onClientConnectionState() - status=0 clientIf=7 device=FF:92:A0:57:7C:E9
09-16 08:54:07.977 6016-6028/com.eveningoutpost.dexdrip I/G5CollectionService: onConnectionStateChange On Main Thread? false
09-16 08:54:07.977 6016-6028/com.eveningoutpost.dexdrip E/G5CollectionService: STATE_DISCONNECTED: 0
09-16 08:54:07.977 6016-6028/com.eveningoutpost.dexdrip D/BluetoothGatt: close()
09-16 08:54:07.987 6016-6028/com.eveningoutpost.dexdrip D/BluetoothGatt: unregisterApp() - mClientIf=7
09-16 08:54:07.987 6016-6028/com.eveningoutpost.dexdrip I/G5CollectionService: clean disconnect
09-16 08:55:09.987 6016-18527/com.eveningoutpost.dexdrip D/SYNC SERVICE:: STARTING INTENT SERVICE
09-16 08:55:10.057 6016-18527/com.eveningoutpost.dexdrip D/jamorham exec: New thread: syncToMongoDb
09-16 08:55:10.077 6016-18530/com.eveningoutpost.dexdrip D/jamorham exec: Acquire Wakelocks total: 1
09-16 08:55:10.077 6016-18530/com.eveningoutpost.dexdrip D/jamorham exec: Queue empty: syncToMongoDb
09-16 08:55:10.077 6016-18530/com.eveningoutpost.dexdrip D/jamorham exec: Release Wakelocks total: 0
09-16 08:57:03.597 6016-6016/com.eveningoutpost.dexdrip D/jamorham: Home: updateCurrentBgInfo from: generic on resume
09-16 08:57:03.737 6016-6016/com.eveningoutpost.dexdrip I/jamorham graph: Not enough data to get sensible noise value
09-16 08:57:03.737 6016-6016/com.eveningoutpost.dexdrip D/jamorhamprofile: Loaded real data
09-16 08:57:03.737 6016-6016/com.eveningoutpost.dexdrip D/jamorham pred: Loaded profile data, blocks: 1
09-16 08:57:03.737 6016-6016/com.eveningoutpost.dexdrip D/jamorham Treatments: Processing iobforgraph2: main
09-16 08:57:03.747 6016-6016/com.eveningoutpost.dexdrip D/jamorham Treatments: Carb delay ms: 900000.0
09-16 08:57:03.747 6016-6016/com.eveningoutpost.dexdrip D/jamorham Treatments: insulin iteration counter: 0
09-16 08:57:03.757 6016-6016/com.eveningoutpost.dexdrip D/jamorham Treatments: second iteration counter: 22
09-16 08:57:03.757 6016-6016/com.eveningoutpost.dexdrip D/jamorham Treatments: Timeslices size: 2
09-16 08:57:03.757 6016-6016/com.eveningoutpost.dexdrip I/jamorham JoH: Benchmark: BgGraphBuilder::addBgReadingValues -> Treatments::ioBForGraph_new 10.0ms
09-16 08:57:03.757 6016-6016/com.eveningoutpost.dexdrip I/jamorham JoH: Benchmark: Default lines create - bggraph builder 21.0 ms
09-16 08:57:03.767 6016-6016/com.eveningoutpost.dexdrip I/jamorham JoH: Benchmark: Clone preview data 4.0 ms
09-16 08:57:03.807 6016-6016/com.eveningoutpost.dexdrip D/BgReading: SlopeArrowBeforeCalibration: guess delta: 1.2590776157894652 delta2: 0.9599999999999937 timedelta: 298590.0
09-16 08:57:03.817 6016-6016/com.eveningoutpost.dexdrip D/jamorham: Home: Asking for calibration B: Uncalculated BG readings: 2 / Calibrations size: 0
09-16 08:57:03.827 6016-6016/com.eveningoutpost.dexdrip D/jamorham JoH: Current WifiPolicy: Never 0 1
09-16 09:00:46.827 6016-6016/com.eveningoutpost.dexdrip I/BgReading: find_new_curve: BG PARABOLIC RATES: -1.718186531274631E-11x^2 + 50.653185171836185x + -3.733216855886125E13
09-16 09:00:46.877 6016-6016/com.eveningoutpost.dexdrip D/DoubleCalibration: start WatchUpdaterService with ACTION_SYNC_CALIBRATION
09-16 09:00:46.877 6016-6016/com.eveningoutpost.dexdrip I/Timeline: Timeline: Activity_launch_request id:com.eveningoutpost.dexdrip time:912529
09-16 09:00:46.907 6016-6016/com.eveningoutpost.dexdrip I/Notifications: Creating Notifications Intent Service
09-16 09:00:46.917 6016-24045/com.eveningoutpost.dexdrip D/Notifications: Running Notifications Intent Service
09-16 09:00:46.917 6016-6016/com.eveningoutpost.dexdrip D/jamorham watchupdater: onStartCommand Action=com.eveningoutpost.dexdrip.wearintegration.WatchUpdaterService.SyncCalibration Path=/nightscout_watch_cal_data
09-16 09:00:46.917 6016-6016/com.eveningoutpost.dexdrip D/jamorham watchupdater: sendWearCalibrationData
09-16 09:00:46.917 6016-6016/com.eveningoutpost.dexdrip D/jamorham watchupdater: sendWearCalibrationData lastest count = 2
09-16 09:00:46.937 6016-6016/com.eveningoutpost.dexdrip D/jamorham watchupdater: dataMap Calibration GSON: {"adjusted_raw_value":161.0084607481579,"bg":115.0,"check_in":false,"distance_from_estimate":0.0,"estimate_bg_at_time_of_calibration":0.0,"estimate_raw_at_time_of_calibration":161.0084607481579,"first_decay":0.0,"first_intercept":0.0,"first_scale":0.0,"first_slope":0.0,"intercept":-78.21015289778947,"raw_timestamp":1474030447803,"raw_value":114.336,"second_decay":0.0,"second_intercept":0.0,"second_scale":0.0,"second_slope":0.0,"sensor_age_at_time_of_estimation":1.5645921E7,"sensor_confidence":0.8950100000000001,"sensor_uuid":"fbe9b40f-c277-4dbc-8399-a0ecee2dc743","slope":1.2,"slope_confidence":0.5,"timestamp":1474030846697,"uuid":"15a8e8da-2eec-4ff2-bfe9-b4c5bab40108"}
09-16 09:00:46.957 6016-6016/com.eveningoutpost.dexdrip D/jamorham watchupdater: dataMap Calibration GSON: {"adjusted_raw_value":161.0084607481579,"bg":115.0,"check_in":false,"distance_from_estimate":0.0,"estimate_bg_at_time_of_calibration":0.0,"estimate_raw_at_time_of_calibration":161.0084607481579,"first_decay":0.0,"first_intercept":0.0,"first_scale":0.0,"first_slope":0.0,"intercept":-78.21015289778947,"raw_timestamp":1474030447803,"raw_value":114.336,"second_decay":0.0,"second_intercept":0.0,"second_scale":0.0,"second_slope":0.0,"sensor_age_at_time_of_estimation":1.5645921E7,"sensor_confidence":0.8950100000000001,"sensor_uuid":"fbe9b40f-c277-4dbc-8399-a0ecee2dc743","slope":1.2,"slope_confidence":0.5,"timestamp":1474030846697,"uuid":"15a8e8da-2eec-4ff2-bfe9-b4c5bab40108"}
09-16 09:00:46.977 6016-6016/com.eveningoutpost.dexdrip D/jamorham watchupdater: dataMap Calibration GSON: {"adjusted_raw_value":159.72167535166668,"bg":105.0,"check_in":false,"distance_from_estimate":0.0,"estimate_bg_at_time_of_calibration":0.0,"estimate_raw_at_time_of_calibration":159.72167535166668,"first_decay":0.0,"first_intercept":0.0,"first_scale":0.0,"first_slope":0.0,"intercept":-8.488,"raw_timestamp":1474030745550,"raw_value":113.488,"second_decay":0.0,"second_intercept":0.0,"second_scale":0.0,"second_slope":0.0,"sensor_age_at_time_of_estimation":1.5645864E7,"sensor_confidence":0.86804,"sensor_uuid":"fbe9b40f-c277-4dbc-8399-a0ecee2dc743","slope":1.0,"slope_confidence":0.5,"timestamp":1474030846640,"uuid":"b5159db2-3cff-4df4-84c7-f9c45c797ae4"}
09-16 09:00:46.977 6016-6016/com.eveningoutpost.dexdrip D/jamorham wear: SendDataToLayerThread pre-execute concurrency: 1
09-16 09:00:46.977 6016-6016/com.eveningoutpost.dexdrip D/jamorham exec: New task queue for: sendWearCalibrationData
09-16 09:00:46.977 6016-6016/com.eveningoutpost.dexdrip D/jamorham exec: New thread: sendWearCalibrationData
09-16 09:00:46.977 6016-24047/com.eveningoutpost.dexdrip D/jamorham exec: Acquire Wakelocks total: 1
09-16 09:00:46.997 6016-6016/com.eveningoutpost.dexdrip D/jamorham: Home: Processing incoming bundle
09-16 09:00:46.997 6016-24047/com.eveningoutpost.dexdrip D/jamorham wear: DataMap: {first_slope=0.0, first_decay=0.0, possible_bad=true, second_intercept=0.0, uuid=15a8e8da-2eec-4ff2-bfe9-b4c5bab40108, sensor_age_at_time_of_estimation=1.5645921E7, timestamp=1474030846697, adjusted_raw_value=161.0084607481579, estimate_bg_at_time_of_calibration=0.0, first_intercept=0.0, bg=115.0, intercept=-78.21015289778947, raw_timestamp=1474030447803, second_slope=0.0, slope=1.2, second_decay=0.0, check_in=false, time=1474030846987, slope_confidence=0.5, distance_from_estimate=0.0, second_scale=0.0, first_scale=0.0, raw_value=114.336, sensor_confidence=0.8950100000000001, sensor_uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743, entries=[{first_slope=0.0, second_decay=0.0, first_decay=0.0, check_in=false, possible_bad=true, slope_confidence=0.5, second_intercept=0.0, distance_from_estimate=0.0, second_scale=0.0, uuid=15a8e8da-2eec-4ff2-bfe9-b4c5bab40108, sensor_age_at_time_of_estimation=1.5645921E7, timestamp=1474030846697, adjusted_raw_value=161.0084607481579, first_scale=0.0, raw_value=114.336, estimate_bg_at_time_of_calibration=0.0, sensor_confidence=0.8950100000000001, first_intercept=0.0, bg=115.0, sensor_uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743, intercept=-78.21015289778947, raw_timestamp=1474030447803, second_slope=0.0, estimate_raw_at_time_of_calibration=161.0084607481579, slope=1.2}, {first_slope=0.0, second_decay=0.0, first_decay=0.0, check_in=false, possible_bad=true, slope_confidence=0.5, second_intercept=0.0, distance_from_estimate=0.0, second_scale=0.0, uuid=b5159db2-3cff-4df4-84c7-f9c45c797ae4, sensor_age_at_time_of_estimation=1.5645864E7, timestamp=1474030846640, adjusted_raw_value=159.72167535166668, first_scale=0.0, raw_value=113.488, estimate_bg_at_time_of_calibration=0.0, sensor_confidence=0.86804, first_intercept=0.0, bg=105.0, sensor_uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743, intercept=-8.488, raw_timestamp=1474030745550, second_slope=0.0, estimate_raw_at_time_of_calibration=159.72167535166668, slope=1.0}], estimate_raw_at_time_of_calibration=161.0084607481579} sent to: SmartWatch 3 2B62
09-16 09:00:46.997 6016-24047/com.eveningoutpost.dexdrip D/jamorham wear: SendDataToLayerThread post-execute concurrency: 0
09-16 09:00:46.997 6016-24047/com.eveningoutpost.dexdrip D/jamorham exec: Queue empty: sendWearCalibrationData
09-16 09:01:24.787 6016-6016/com.eveningoutpost.dexdrip D/jamorham watchupdater: wearable event path: /nightscout_watch_data_resend
09-16 09:01:25.207 6016-24592/com.eveningoutpost.dexdrip I/connection: Opened connection [connectionId{localValue:1, serverValue:672208}] to ds058048.mongolab.com:58048
09-16 09:01:25.247 6016-6016/com.eveningoutpost.dexdrip D/jamorham wear: SendDataToLayerThread pre-execute concurrency: 1
09-16 09:01:25.247 6016-6016/com.eveningoutpost.dexdrip D/jamorham exec: New task queue for: resendData
09-16 09:01:25.247 6016-6016/com.eveningoutpost.dexdrip D/jamorham exec: New thread: resendData
09-16 09:01:25.247 6016-24653/com.eveningoutpost.dexdrip D/jamorham exec: Acquire Wakelocks total: 2
09-16 09:01:25.277 6016-24653/com.eveningoutpost.dexdrip D/jamorham wear: DataMap: {sgvString=113, sgvLevel=0, low=60.0, slopeArrow=→, entries=[{sgvString=113, sgvLevel=0, low=60.0, slopeArrow=→, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.47403074555E12, sgvDouble=113.45585752421053, delta=-1.6 mg/dl, battery=74}, {sgvString=115, sgvLevel=0, low=60.0, slopeArrow=→, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474030447803E12, sgvDouble=115.0, delta=-1.6 mg/dl, battery=74}, {sgvString=113, sgvLevel=0, low=60.0, slopeArrow=→, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474030149213E12, sgvDouble=113.48910686105262, delta=-1.6 mg/dl, battery=74}, {sgvString=103, sgvLevel=0, low=60.0, slopeArrow=→, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474017249618E12, sgvDouble=102.65223189711988, delta=-1.6 mg/dl, battery=74}, {sgvString=101, sgvLevel=0, low=60.0, slopeArrow=→, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474016648571E12, sgvDouble=100.55370274411536, delta=-1.6 mg/dl, battery=74}, {sgvString=99, sgvLevel=0, low=60.0, slopeArrow=→, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474016047966E12, sgvDouble=99.20426880775295, delta=-1.6 mg/dl, battery=74}, {sgvString=99, sgvLevel=0, low=60.0, slopeArrow=→, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474015450706E12, sgvDouble=99.3583380367077, delta=-1.6 mg/dl, battery=74}, {sgvString=113, sgvLevel=0, low=60.0, slopeArrow=→, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474012148748E12, sgvDouble=113.27769596296557, delta=-1.6 mg/dl, battery=74}, {sgvString=113, sgvLevel=0, low=60.0, slopeArrow=→, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474011851953E12, sgvDouble=112.56578987055391, delta=-1.6 mg/dl, battery=74}, {sgvString=112, sgvLevel=0, low=60.0, slopeArrow=→, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474011548198E12, sgvDouble=111.57762171243026, delta=-1.6 mg/dl, battery=74}, {sgvString=107, sgvLevel=0, low=60.0, slopeArrow=→, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474008553461E12, sgvDouble=106.65803184994371, delta=-1.6 mg/dl, battery=74}, {sgvString=101, sgvLevel=0, low=60.0, slopeArrow=→, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474007951483E12, sgvDouble=101.22841971229656, delta=-1.6 mg/dl, battery=74}, {sgvString=98, sgvLevel=0, low=60.0, slopeArrow=→, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474007352265E12, sgvDouble=97.961089512049, delta=-1.6 mg/dl, battery=74}, {sgvString=98, sgvLevel=0, low=60.0, slopeArrow=→, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474007052871E12, sgvDouble=97.88139853155516, delta=-1.6 mg/dl, battery=74}, {sgvString=98, sgvLevel=0, low=60.0, slopeArrow=→, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474006452995E12, sgvDouble=97.71139110650162, delta=-1.6 mg/dl, battery=74}, {sgvString=100, sgvLevel=0, low=60.0, slopeArrow=→, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474005257634E12, sgvDouble=99.9852404165926, delta=-1.6 mg/dl, battery=74}, {sgvString=100, sgvLevel=0, low=60.0, slopeArrow=→, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474004652636E12, sgvDouble=100.25087701823875, delta=-1.6 mg/dl, battery=74}, {sgvString=100, sgvLevel=0, low=60.0, slopeArrow=→, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474004353523E12, sgvDouble=100.42088444329228, delta=-1.6 mg/dl, battery=74}, {sgvString=103, sgvLevel=0, low=60.0, slopeArrow=→, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474002553479E12, sgvDouble=103.16225417228047, delta=-1.6 mg/dl, battery=74}, {sgvString=103, sgvLevel=0, low=60.0, slopeArrow=→, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474001955083E12, sgvDouble=102.89661757063433, delta=-1.6 mg/dl, battery=74
09-16 09:01:25.277 6016-24653/com.eveningoutpost.dexdrip D/jamorham wear: SendDataToLayerThread post-execute concurrency: 0
09-16 09:01:25.277 6016-24653/com.eveningoutpost.dexdrip D/jamorham exec: Queue empty: resendData
09-16 09:00:27.194 22182-22239/com.eveningoutpost.dexdrip D/jamorham listener: syncSensorData
09-16 09:00:27.195 22182-22239/com.eveningoutpost.dexdrip D/jamorham listener: syncSensorData add Sensor for uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743
09-16 09:00:27.195 22182-22239/com.eveningoutpost.dexdrip D/jamorham listener: syncSensorData add Sensor for uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743 timestamp=1474015200776 timeString=09.16.2016 04:40:00
09-16 09:00:27.195 22182-22239/com.eveningoutpost.dexdrip D/SENSOR: xDrip_sensor_uuid is fbe9b40f-c277-4dbc-8399-a0ecee2dc743
09-16 09:00:27.195 22182-22239/com.eveningoutpost.dexdrip E/SQLiteLog: (1) no such table: Sensor
09-16 09:00:27.196 22182-22239/com.eveningoutpost.dexdrip D/SENSOR: xDrip_sensor_uuid is fbe9b40f-c277-4dbc-8399-a0ecee2dc743
09-16 09:00:27.196 22182-22239/com.eveningoutpost.dexdrip E/SQLiteLog: (1) no such table: Sensor
09-16 09:00:27.197 22182-22239/com.eveningoutpost.dexdrip D/jamorham listener: syncSensorData Sensor create.
09-16 09:00:27.222 22182-22239/com.eveningoutpost.dexdrip D/SENSOR MODEL:: Sensors@23
09-16 09:00:27.224 22182-22239/com.eveningoutpost.dexdrip D/jamorham listener: syncSensorData Created Sensor uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743 started at=1474015200776
09-16 09:00:27.264 22182-22239/com.eveningoutpost.dexdrip V/WearableLS: unbindService: com.eveningoutpost.dexdrip/.ListenerService
09-16 09:00:28.181 22182-22239/com.eveningoutpost.dexdrip V/WearableLS: bindService: com.eveningoutpost.dexdrip/.ListenerService
09-16 09:00:28.187 22182-22239/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged SYNC_DB_PATH=/syncweardb
09-16 09:00:28.187 22182-22239/com.eveningoutpost.dexdrip V/WearableLS: unbindService: com.eveningoutpost.dexdrip/.ListenerService
09-16 09:00:28.215 22182-22239/com.eveningoutpost.dexdrip V/WearableLS: bindService: com.eveningoutpost.dexdrip/.ListenerService
09-16 09:00:28.218 22182-22239/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged path=/nightscout_watch_sensor_data DataMap={started_at=1474015200776, sensor_location=Belly (abdomen), latest_battery_level=216, time=1474030827332, uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743}
09-16 09:00:28.218 22182-22239/com.eveningoutpost.dexdrip D/jamorham listener: syncSensorData
09-16 09:00:28.218 22182-22239/com.eveningoutpost.dexdrip D/jamorham listener: syncSensorData add Sensor for uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743
09-16 09:00:28.219 22182-22239/com.eveningoutpost.dexdrip D/jamorham listener: syncSensorData add Sensor for uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743 timestamp=1474015200776 timeString=09.16.2016 04:40:00
09-16 09:00:28.219 22182-22239/com.eveningoutpost.dexdrip D/SENSOR: xDrip_sensor_uuid is fbe9b40f-c277-4dbc-8399-a0ecee2dc743
09-16 09:00:28.220 22182-22239/com.eveningoutpost.dexdrip E/SQLiteLog: (1) no such table: Sensor
09-16 09:00:28.221 22182-22239/com.eveningoutpost.dexdrip D/SENSOR: xDrip_sensor_uuid is fbe9b40f-c277-4dbc-8399-a0ecee2dc743
09-16 09:00:28.221 22182-22239/com.eveningoutpost.dexdrip E/SQLiteLog: (1) no such table: Sensor
09-16 09:00:28.222 22182-22239/com.eveningoutpost.dexdrip D/jamorham listener: syncSensorData Sensor create.
09-16 09:00:28.249 22182-22239/com.eveningoutpost.dexdrip D/SENSOR MODEL:: Sensors@24
09-16 09:00:28.251 22182-22239/com.eveningoutpost.dexdrip D/jamorham listener: syncSensorData Created Sensor uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743 started at=1474015200776
09-16 09:00:28.296 22182-22239/com.eveningoutpost.dexdrip V/WearableLS: unbindService: com.eveningoutpost.dexdrip/.ListenerService
09-16 09:00:48.187 22182-22239/com.eveningoutpost.dexdrip V/WearableLS: bindService: com.eveningoutpost.dexdrip/.ListenerService
09-16 09:00:48.197 22182-22239/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged path=/nightscout_watch_cal_data DataMap={first_slope=0.0, first_decay=0.0, possible_bad=true, second_intercept=0.0, uuid=15a8e8da-2eec-4ff2-bfe9-b4c5bab40108, sensor_age_at_time_of_estimation=1.5645921E7, timestamp=1474030846697, adjusted_raw_value=161.0084607481579, estimate_bg_at_time_of_calibration=0.0, first_intercept=0.0, bg=115.0, intercept=-78.21015289778947, raw_timestamp=1474030447803, second_slope=0.0, slope=1.2, second_decay=0.0, check_in=false, time=1474030846987, slope_confidence=0.5, distance_from_estimate=0.0, second_scale=0.0, raw_value=114.336, first_scale=0.0, sensor_confidence=0.8950100000000001, sensor_uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743, entries=[{second_decay=0.0, first_slope=0.0, first_decay=0.0, check_in=false, slope_confidence=0.5, possible_bad=true, second_intercept=0.0, distance_from_estimate=0.0, uuid=15a8e8da-2eec-4ff2-bfe9-b4c5bab40108, sensor_age_at_time_of_estimation=1.5645921E7, second_scale=0.0, timestamp=1474030846697, adjusted_raw_value=161.0084607481579, raw_value=114.336, first_scale=0.0, sensor_confidence=0.8950100000000001, estimate_bg_at_time_of_calibration=0.0, first_intercept=0.0, bg=115.0, sensor_uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743, intercept=-78.21015289778947, raw_timestamp=1474030447803, second_slope=0.0, estimate_raw_at_time_of_calibration=161.0084607481579, slope=1.2}, {second_decay=0.0, first_slope=0.0, first_decay=0.0, check_in=false, slope_confidence=0.5, possible_bad=true, second_intercept=0.0, distance_from_estimate=0.0, uuid=b5159db2-3cff-4df4-84c7-f9c45c797ae4, sensor_age_at_time_of_estimation=1.5645864E7, second_scale=0.0, timestamp=1474030846640, adjusted_raw_value=159.72167535166668, raw_value=113.488, first_scale=0.0, sensor_confidence=0.86804, estimate_bg_at_time_of_calibration=0.0, first_intercept=0.0, bg=105.0, sensor_uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743, intercept=-8.488, raw_timestamp=1474030745550, second_slope=0.0, estimate_raw_at_time_of_calibration=159.72167535166668, slope=1.0}], estimate_raw_at_time_of_calibration=161.0084607481579}
09-16 09:00:48.198 22182-22239/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData
09-16 09:00:48.220 22182-22239/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData add Calibration Table entries count=2
09-16 09:00:48.236 22182-22239/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData add Calibration Table entry={second_decay=0.0, first_slope=0.0, first_decay=0.0, check_in=false, slope_confidence=0.5, possible_bad=true, second_intercept=0.0, distance_from_estimate=0.0, uuid=15a8e8da-2eec-4ff2-bfe9-b4c5bab40108, sensor_age_at_time_of_estimation=1.5645921E7, second_scale=0.0, timestamp=1474030846697, adjusted_raw_value=161.0084607481579, raw_value=114.336, first_scale=0.0, sensor_confidence=0.8950100000000001, estimate_bg_at_time_of_calibration=0.0, first_intercept=0.0, bg=115.0, sensor_uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743, intercept=-78.21015289778947, raw_timestamp=1474030447803, second_slope=0.0, estimate_raw_at_time_of_calibration=161.0084607481579, slope=1.2}
09-16 09:00:48.242 22182-22239/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData create Calibration for uuid=15a8e8da-2eec-4ff2-bfe9-b4c5bab40108 timestamp=1474030846697 timeString=09.16.2016 09:00:46
09-16 09:00:48.271 22182-22239/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData add Calibration Table entry={second_decay=0.0, first_slope=0.0, first_decay=0.0, check_in=false, slope_confidence=0.5, possible_bad=true, second_intercept=0.0, distance_from_estimate=0.0, uuid=b5159db2-3cff-4df4-84c7-f9c45c797ae4, sensor_age_at_time_of_estimation=1.5645864E7, second_scale=0.0, timestamp=1474030846640, adjusted_raw_value=159.72167535166668, raw_value=113.488, first_scale=0.0, sensor_confidence=0.86804, estimate_bg_at_time_of_calibration=0.0, first_intercept=0.0, bg=105.0, sensor_uuid=fbe9b40f-c277-4dbc-8399-a0ecee2dc743, intercept=-8.488, raw_timestamp=1474030745550, second_slope=0.0, estimate_raw_at_time_of_calibration=159.72167535166668, slope=1.0}
09-16 09:00:48.278 22182-22239/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData create Calibration for uuid=b5159db2-3cff-4df4-84c7-f9c45c797ae4 timestamp=1474030846640 timeString=09.16.2016 09:00:46
09-16 09:00:48.301 22182-22239/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData cals in wear db count = 2
09-16 09:00:48.347 22182-22239/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData cal: {"adjusted_raw_value":161.0084607481579,"bg":115.0,"check_in":false,"distance_from_estimate":0.0,"estimate_bg_at_time_of_calibration":0.0,"estimate_raw_at_time_of_calibration":161.0084607481579,"first_decay":0.0,"first_intercept":0.0,"first_scale":0.0,"first_slope":0.0,"intercept":-78.21015289778947,"possible_bad":true,"raw_timestamp":1474030447803,"raw_value":114.336,"second_decay":0.0,"second_intercept":0.0,"second_scale":0.0,"second_slope":0.0,"sensor_age_at_time_of_estimation":1.5645921E7,"sensor_confidence":0.8950100000000001,"sensor_uuid":"fbe9b40f-c277-4dbc-8399-a0ecee2dc743","slope":1.2,"slope_confidence":0.5,"timestamp":1474030846697,"uuid":"15a8e8da-2eec-4ff2-bfe9-b4c5bab40108"}
09-16 09:00:48.371 22182-22239/com.eveningoutpost.dexdrip D/jamorham listener: syncCalibrationData cal: {"adjusted_raw_value":159.72167535166668,"bg":105.0,"check_in":false,"distance_from_estimate":0.0,"estimate_bg_at_time_of_calibration":0.0,"estimate_raw_at_time_of_calibration":159.72167535166668,"first_decay":0.0,"first_intercept":0.0,"first_scale":0.0,"first_slope":0.0,"intercept":-8.488,"possible_bad":true,"raw_timestamp":1474030745550,"raw_value":113.488,"second_decay":0.0,"second_intercept":0.0,"second_scale":0.0,"second_slope":0.0,"sensor_age_at_time_of_estimation":1.5645864E7,"sensor_confidence":0.86804,"sensor_uuid":"fbe9b40f-c277-4dbc-8399-a0ecee2dc743","slope":1.0,"slope_confidence":0.5,"timestamp":1474030846640,"uuid":"b5159db2-3cff-4df4-84c7-f9c45c797ae4"}
09-16 09:00:48.372 22182-22239/com.eveningoutpost.dexdrip V/WearableLS: unbindService: com.eveningoutpost.dexdrip/.ListenerService
09-16 09:01:24.947 22182-22182/com.eveningoutpost.dexdrip D/onDraw: draw
09-16 09:01:25.003 22182-22182/com.eveningoutpost.dexdrip D/onDraw: draw
09-16 09:01:25.013 22182-22182/com.eveningoutpost.dexdrip D/jamorham listener: DataRequester: /nightscout_watch_data_resend
09-16 09:01:25.018 22182-22277/com.eveningoutpost.dexdrip D/jamorham listener: Not connected for sending
09-16 09:01:25.099 22182-22182/com.eveningoutpost.dexdrip D/jamorham listener: DataRequester: /nightscout_watch_data_resend
09-16 09:01:25.104 22182-22277/com.eveningoutpost.dexdrip D/jamorham listener: doInBackground connected. NodeApi.GetConnectedNodesResult await count=1
09-16 09:01:26.033 22182-22899/com.eveningoutpost.dexdrip D/onDraw: draw
09-16 09:01:26.529 22182-22239/com.eveningoutpost.dexdrip V/WearableLS: bindService: com.eveningoutpost.dexdrip/.ListenerService
09-16 09:01:26.572 22182-22239/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged dataMap={sgvString=113, sgvLevel=0, slopeArrow=→, low=60.0, entries=[{sgvString=113, sgvLevel=0, slopeArrow=→, low=60.0, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.47403074555E12, sgvDouble=113.45585752421053, delta=-1.6 mg/dl, battery=74}, {sgvString=115, sgvLevel=0, slopeArrow=→, low=60.0, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474030447803E12, sgvDouble=115.0, delta=-1.6 mg/dl, battery=74}, {sgvString=113, sgvLevel=0, slopeArrow=→, low=60.0, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474030149213E12, sgvDouble=113.48910686105262, delta=-1.6 mg/dl, battery=74}, {sgvString=103, sgvLevel=0, slopeArrow=→, low=60.0, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474017249618E12, sgvDouble=102.65223189711988, delta=-1.6 mg/dl, battery=74}, {sgvString=101, sgvLevel=0, slopeArrow=→, low=60.0, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474016648571E12, sgvDouble=100.55370274411536, delta=-1.6 mg/dl, battery=74}, {sgvString=99, sgvLevel=0, slopeArrow=→, low=60.0, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474016047966E12, sgvDouble=99.20426880775295, delta=-1.6 mg/dl, battery=74}, {sgvString=99, sgvLevel=0, slopeArrow=→, low=60.0, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474015450706E12, sgvDouble=99.3583380367077, delta=-1.6 mg/dl, battery=74}, {sgvString=113, sgvLevel=0, slopeArrow=→, low=60.0, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474012148748E12, sgvDouble=113.27769596296557, delta=-1.6 mg/dl, battery=74}, {sgvString=113, sgvLevel=0, slopeArrow=→, low=60.0, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474011851953E12, sgvDouble=112.56578987055391, delta=-1.6 mg/dl, battery=74}, {sgvString=112, sgvLevel=0, slopeArrow=→, low=60.0, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474011548198E12, sgvDouble=111.57762171243026, delta=-1.6 mg/dl, battery=74}, {sgvString=107, sgvLevel=0, slopeArrow=→, low=60.0, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474008553461E12, sgvDouble=106.65803184994371, delta=-1.6 mg/dl, battery=74}, {sgvString=101, sgvLevel=0, slopeArrow=→, low=60.0, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474007951483E12, sgvDouble=101.22841971229656, delta=-1.6 mg/dl, battery=74}, {sgvString=98, sgvLevel=0, slopeArrow=→, low=60.0, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474007352265E12, sgvDouble=97.961089512049, delta=-1.6 mg/dl, battery=74}, {sgvString=98, sgvLevel=0, slopeArrow=→, low=60.0, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474007052871E12, sgvDouble=97.88139853155516, delta=-1.6 mg/dl, battery=74}, {sgvString=98, sgvLevel=0, slopeArrow=→, low=60.0, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474006452995E12, sgvDouble=97.71139110650162, delta=-1.6 mg/dl, battery=74}, {sgvString=100, sgvLevel=0, slopeArrow=→, low=60.0, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474005257634E12, sgvDouble=99.9852404165926, delta=-1.6 mg/dl, battery=74}, {sgvString=100, sgvLevel=0, slopeArrow=→, low=60.0, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474004652636E12, sgvDouble=100.25087701823875, delta=-1.6 mg/dl, battery=74}, {sgvString=100, sgvLevel=0, slopeArrow=→, low=60.0, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474004353523E12, sgvDouble=100.42088444329228, delta=-1.6 mg/dl, battery=74}, {sgvString=103, sgvLevel=0, slopeArrow=→, low=60.0, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474002553479E12, sgvDouble=103.16225417228047, delta=-1.6 mg/dl, battery=74}, {sgvString=103, sgvLevel=0, slopeArrow=→, low=60.0, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474001955083E12, sgvDouble=102.89661757063433, delta=-1.6
09-16 09:01:26.600 22182-22239/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged dataMap dex_txid=4023GU
09-16 09:01:26.600 22182-22239/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged prefs set dex_txid=4023GU
09-16 09:01:26.600 22182-22239/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged dataMap units=mgdl
09-16 09:01:26.600 22182-22239/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged prefs units=mgdl
09-16 09:01:26.600 22182-22239/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged dataMap highMark=140.0 highMark=60.0
09-16 09:01:26.614 22182-22239/com.eveningoutpost.dexdrip V/WearableLS: unbindService: com.eveningoutpost.dexdrip/.ListenerService
09-16 09:01:26.715 22182-22182/com.eveningoutpost.dexdrip D/onDraw: draw
09-16 09:01:27.188 22182-22182/com.eveningoutpost.dexdrip D/onDraw: draw
09-16 09:01:27.239 22182-22182/com.eveningoutpost.dexdrip D/onDraw: draw
09-16 09:01:28.027 22182-22674/com.eveningoutpost.dexdrip D/onDraw: draw
09-16 09:01:28.059 22182-22182/com.eveningoutpost.dexdrip D/onDraw: draw
09-16 09:01:35.096 22182-22182/com.eveningoutpost.dexdrip D/onDraw: draw
09-16 09:01:36.369 22182-22182/com.eveningoutpost.dexdrip D/onDraw: draw
09-16 09:01:36.410 22182-22182/com.eveningoutpost.dexdrip D/onDraw: draw
09-16 09:01:37.014 22182-22899/com.eveningoutpost.dexdrip D/onDraw: draw
09-16 09:01:40.095 22182-22182/com.eveningoutpost.dexdrip D/onDraw: draw
09-16 09:01:40.115 22182-22182/com.eveningoutpost.dexdrip D/onDraw: draw
09-16 09:01:42.788 22182-22182/com.eveningoutpost.dexdrip D/onDraw: draw
09-16 09:01:42.821 22182-22182/com.eveningoutpost.dexdrip D/onDraw: draw
09-16 09:01:47.274 22182-22182/com.eveningoutpost.dexdrip D/onDraw: draw
09-16 09:01:47.290 22182-22182/com.eveningoutpost.dexdrip D/onDraw: draw
09-16 09:02:37.017 22182-22674/com.eveningoutpost.dexdrip D/onDraw: draw
09-16 09:03:37.022 22182-22899/com.eveningoutpost.dexdrip D/onDraw: draw
09-16 09:04:13.238 22182-22239/com.eveningoutpost.dexdrip V/WearableLS: bindService: com.eveningoutpost.dexdrip/.ListenerService
09-16 09:04:13.241 22182-22239/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged dataMap={sgvString=111, sgvLevel=0, slopeArrow=→, low=60.0, high=140.0, batteryLevel=1, units=mgdl, dex_txid=4023GU, timestamp=1.474031051513E12, sgvDouble=111.31620540399999, delta=-2.1 mg/dl, battery=74}
09-16 09:04:13.241 22182-22239/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged dataMap dex_txid=4023GU
09-16 09:04:13.241 22182-22239/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged prefs set dex_txid=4023GU
09-16 09:04:13.241 22182-22239/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged dataMap units=mgdl
09-16 09:04:13.242 22182-22239/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged prefs units=mgdl
09-16 09:04:13.242 22182-22239/com.eveningoutpost.dexdrip D/jamorham listener: onDataChanged dataMap highMark=140.0 highMark=60.0
09-16 09:04:13.249 22182-22239/com.eveningoutpost.dexdrip V/WearableLS: unbindService: com.eveningoutpost.dexdrip/.ListenerService
09-16 09:04:13.258 22182-22182/com.eveningoutpost.dexdrip D/onDraw: draw
//KS Power down phone then switch watchface to trigger requestData and g5 connect.
09-16 09:34:05.392 22182-22193/com.eveningoutpost.dexdrip D/BluetoothGatt: onSearchComplete() = Device=FF:92:A0:57:7C:E9 Status=0
09-16 09:34:05.392 22182-22193/com.eveningoutpost.dexdrip I/G5CollectionService: onServicesDiscovered On Main Thread? false
09-16 09:34:05.392 22182-22193/com.eveningoutpost.dexdrip E/G5CollectionService: onServicesDiscovered: 0
09-16 09:34:05.414 22182-22193/com.eveningoutpost.dexdrip D/BluetoothGatt: setCharacteristicNotification() - uuid: f8083535-849e-531c-c594-30f1f86a4ea5 enable: true
09-16 09:34:05.485 22182-22890/com.eveningoutpost.dexdrip E/G5CollectionService: ReadStatus: 0
09-16 09:34:05.516 22182-22890/com.eveningoutpost.dexdrip I/G5CollectionService: onCharacteristicRead On Main Thread? false
09-16 09:34:05.516 22182-22890/com.eveningoutpost.dexdrip E/G5CollectionService: CharBytes-or [5, 1, 1]
09-16 09:34:05.529 22182-22890/com.eveningoutpost.dexdrip I/G5CollectionService: CharHex-or 050101
09-16 09:34:05.532 22182-22890/com.eveningoutpost.dexdrip I/G5CollectionService: Request Sensor Data
09-16 09:34:05.533 22182-22890/com.eveningoutpost.dexdrip D/BluetoothGatt: setCharacteristicNotification() - uuid: f8083534-849e-531c-c594-30f1f86a4ea5 enable: true
09-16 09:34:08.412 22182-22913/com.eveningoutpost.dexdrip D/BluetoothGatt: onClientConnectionState() - status=59 clientIf=5 device=FF:92:A0:57:7C:E9
09-16 09:34:08.412 22182-22913/com.eveningoutpost.dexdrip I/G5CollectionService: onConnectionStateChange On Main Thread? false
09-16 09:34:08.412 22182-22913/com.eveningoutpost.dexdrip E/G5CollectionService: STATE_DISCONNECTED: 59
09-16 09:34:08.448 22182-22913/com.eveningoutpost.dexdrip D/BluetoothGatt: close()
09-16 09:34:08.448 22182-22913/com.eveningoutpost.dexdrip D/BluetoothGatt: unregisterApp() - mClientIf=5
09-16 09:34:08.450 22182-22913/com.eveningoutpost.dexdrip D/jamorham JoH: G5-timeout rate limited: 60 seconds
09-16 09:34:08.454 22182-19787/com.eveningoutpost.dexdrip D/BluetoothAdapter: STATE_ON
09-16 09:34:08.454 22182-19787/com.eveningoutpost.dexdrip D/BluetoothLeScanner: could not find callback wrapper
09-16 09:34:08.455 22182-19787/com.eveningoutpost.dexdrip D/BluetoothAdapter: STATE_ON
09-16 09:34:08.458 22182-22193/com.eveningoutpost.dexdrip D/BluetoothLeScanner: onClientRegistered() - status=0 clientIf=5
09-16 09:34:08.593 22182-22188/com.eveningoutpost.dexdrip W/art: Suspending all threads took: 20.416ms
09-16 09:34:08.595 22182-19787/com.eveningoutpost.dexdrip W/G5CollectionService: scan cycle start
09-16 09:34:08.617 22182-22182/com.eveningoutpost.dexdrip I/G5CollectionService: result: ScanResult{mDevice=FF:92:A0:57:7C:E9, mScanRecord=ScanRecord [mAdvertiseFlags=6, mServiceUuids=[0000febc-0000-1000-8000-00805f9b34fb], mManufacturerSpecificData={208=[30, 1]}, mServiceData={}, mTxPowerLevel=-2147483648, mDeviceName=DexcomGU], mRssi=-67, mTimestampNanos=44918431752927}
09-16 09:34:08.621 22182-22182/com.eveningoutpost.dexdrip E/G5CollectionService: stopScan
09-16 09:34:08.638 22182-22182/com.eveningoutpost.dexdrip D/BluetoothAdapter: STATE_ON
09-16 09:34:08.654 22182-22182/com.eveningoutpost.dexdrip I/G5CollectionService: Request Connect
09-16 09:34:08.654 22182-22182/com.eveningoutpost.dexdrip I/G5CollectionService: mGatt Null, connecting...
09-16 09:34:08.654 22182-22182/com.eveningoutpost.dexdrip I/G5CollectionService: connectToDevice On Main Thread? true
09-16 09:34:08.655 22182-22182/com.eveningoutpost.dexdrip D/BluetoothGatt: connect() - device: FF:92:A0:57:7C:E9, auto: false
09-16 09:34:08.655 22182-22182/com.eveningoutpost.dexdrip D/BluetoothGatt: registerApp()
09-16 09:34:08.655 22182-22182/com.eveningoutpost.dexdrip D/BluetoothGatt: registerApp() - UUID=5ffe5855-fada-4755-9e00-e32fdf219475
09-16 09:34:08.657 22182-22194/com.eveningoutpost.dexdrip D/BluetoothGatt: onClientRegistered() - status=0 clientIf=5
09-16 09:34:08.929 22182-22913/com.eveningoutpost.dexdrip D/BluetoothGatt: onClientConnectionState() - status=0 clientIf=5 device=FF:92:A0:57:7C:E9
09-16 09:34:08.929 22182-22913/com.eveningoutpost.dexdrip I/G5CollectionService: onConnectionStateChange On Main Thread? false
09-16 09:34:08.929 22182-22913/com.eveningoutpost.dexdrip E/G5CollectionService: STATE_CONNECTED
09-16 09:34:08.942 22182-22913/com.eveningoutpost.dexdrip I/G5CollectionService: discoverServices On Main Thread? false
09-16 09:34:08.942 22182-22913/com.eveningoutpost.dexdrip D/BluetoothGatt: discoverServices() - device: FF:92:A0:57:7C:E9
09-16 09:34:08.946 22182-22913/com.eveningoutpost.dexdrip D/G5CollectionService: alreadyStoppedScanning
09-16 09:34:08.946 22182-22913/com.eveningoutpost.dexdrip D/jamorham JoH: G5-keepalive rate limited: 5 seconds
09-16 09:34:08.946 22182-22913/com.eveningoutpost.dexdrip E/G5CollectionService: Ignoring keepalive call due to ratelimit
09-16 09:34:08.970 22182-22913/com.eveningoutpost.dexdrip D/BluetoothGatt: onSearchComplete() = Device=FF:92:A0:57:7C:E9 Status=0
09-16 09:34:08.970 22182-22913/com.eveningoutpost.dexdrip I/G5CollectionService: onServicesDiscovered On Main Thread? false
09-16 09:34:08.970 22182-22913/com.eveningoutpost.dexdrip E/G5CollectionService: onServicesDiscovered: 0