-
Notifications
You must be signed in to change notification settings - Fork 0
/
OZW_Log.txt
2632 lines (2632 loc) · 214 KB
/
OZW_Log.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
2018-02-02 13:42:38.169 Always, OpenZwave Version 1.4.2586 Starting Up
2018-02-02 13:42:42.012 Info, Setting Up Provided Network Key for Secure Communications
2018-02-02 13:42:42.012 Warning, Failed - Network Key Not Set
2018-02-02 13:42:42.012 Info, mgr, Added driver for controller /dev/ttyACM0
2018-02-02 13:42:42.013 Info, Opening controller /dev/ttyACM0
2018-02-02 13:42:42.013 Info, Trying to open serial port /dev/ttyACM0 (attempt 1)
2018-02-02 13:42:42.014 Info, Serial port /dev/ttyACM0 opened (attempt 1)
2018-02-02 13:42:42.015 Detail, contrlr, Queuing (Command) FUNC_ID_ZW_GET_VERSION: 0x01, 0x03, 0x00, 0x15, 0xe9
2018-02-02 13:42:42.015 Detail, contrlr, Queuing (Command) FUNC_ID_ZW_MEMORY_GET_ID: 0x01, 0x03, 0x00, 0x20, 0xdc
2018-02-02 13:42:42.016 Detail, contrlr, Queuing (Command) FUNC_ID_ZW_GET_CONTROLLER_CAPABILITIES: 0x01, 0x03, 0x00, 0x05, 0xf9
2018-02-02 13:42:42.016 Detail, contrlr, Queuing (Command) FUNC_ID_SERIAL_API_GET_CAPABILITIES: 0x01, 0x03, 0x00, 0x07, 0xfb
2018-02-02 13:42:42.016 Detail, contrlr, Queuing (Command) FUNC_ID_ZW_GET_SUC_NODE_ID: 0x01, 0x03, 0x00, 0x56, 0xaa
2018-02-02 13:42:42.016 Detail,
2018-02-02 13:42:42.017 Info, contrlr, Sending (Command) message (Callback ID=0x00, Expected Reply=0x15) - FUNC_ID_ZW_GET_VERSION: 0x01, 0x03, 0x00, 0x15, 0xe9
2018-02-02 13:42:42.121 Detail, contrlr, Received: 0x01, 0x10, 0x01, 0x15, 0x5a, 0x2d, 0x57, 0x61, 0x76, 0x65, 0x20, 0x33, 0x2e, 0x39, 0x35, 0x00, 0x01, 0x99
2018-02-02 13:42:42.122 Detail,
2018-02-02 13:42:42.122 Info, contrlr, Received reply to FUNC_ID_ZW_GET_VERSION:
2018-02-02 13:42:42.122 Info, contrlr, Static Controller library, version Z-Wave 3.95
2018-02-02 13:42:42.122 Detail, Node045, Expected reply was received
2018-02-02 13:42:42.122 Detail, Node045, Message transaction complete
2018-02-02 13:42:42.122 Detail,
2018-02-02 13:42:42.122 Detail, contrlr, Removing current message
2018-02-02 13:42:42.122 Detail,
2018-02-02 13:42:42.122 Info, contrlr, Sending (Command) message (Callback ID=0x00, Expected Reply=0x20) - FUNC_ID_ZW_MEMORY_GET_ID: 0x01, 0x03, 0x00, 0x20, 0xdc
2018-02-02 13:42:42.125 Detail, contrlr, Received: 0x01, 0x08, 0x01, 0x20, 0xff, 0x7d, 0xe4, 0x92, 0x01, 0x23
2018-02-02 13:42:42.125 Detail,
2018-02-02 13:42:42.125 Info, contrlr, Received reply to FUNC_ID_ZW_MEMORY_GET_ID. Home ID = 0xff7de492. Our node ID = 1
2018-02-02 13:42:42.125 Detail, Node125, Expected reply was received
2018-02-02 13:42:42.125 Detail, Node125, Message transaction complete
2018-02-02 13:42:42.125 Detail,
2018-02-02 13:42:42.125 Detail, contrlr, Removing current message
2018-02-02 13:42:42.126 Detail,
2018-02-02 13:42:42.126 Info, contrlr, Sending (Command) message (Callback ID=0x00, Expected Reply=0x05) - FUNC_ID_ZW_GET_CONTROLLER_CAPABILITIES: 0x01, 0x03, 0x00, 0x05, 0xf9
2018-02-02 13:42:42.128 Detail, contrlr, Received: 0x01, 0x04, 0x01, 0x05, 0x08, 0xf7
2018-02-02 13:42:42.128 Detail,
2018-02-02 13:42:42.128 Info, contrlr, Received reply to FUNC_ID_ZW_GET_CONTROLLER_CAPABILITIES:
2018-02-02 13:42:42.128 Info, contrlr, There is no SUC ID Server (SIS) in this network.
2018-02-02 13:42:42.128 Info, contrlr, The PC controller is a primary controller.
2018-02-02 13:42:42.128 Detail, Node247, Expected reply was received
2018-02-02 13:42:42.128 Detail, Node247, Message transaction complete
2018-02-02 13:42:42.128 Detail,
2018-02-02 13:42:42.128 Detail, contrlr, Removing current message
2018-02-02 13:42:42.129 Detail,
2018-02-02 13:42:42.129 Info, contrlr, Sending (Command) message (Callback ID=0x00, Expected Reply=0x07) - FUNC_ID_SERIAL_API_GET_CAPABILITIES: 0x01, 0x03, 0x00, 0x07, 0xfb
2018-02-02 13:42:42.133 Detail, contrlr, Received: 0x01, 0x2b, 0x01, 0x07, 0x01, 0x00, 0x00, 0x86, 0x00, 0x01, 0x00, 0x5a, 0xfe, 0x81, 0xff, 0x88, 0x4f, 0x1f, 0x00, 0x00, 0xfb, 0x9f, 0x7d, 0xa0, 0x67, 0x00, 0x00, 0x80, 0x00, 0x80, 0x86, 0x00, 0x00, 0x00, 0xe8, 0x73, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x60, 0x00, 0x00, 0xfb
2018-02-02 13:42:42.133 Detail,
2018-02-02 13:42:42.133 Info, contrlr, Received reply to FUNC_ID_SERIAL_API_GET_CAPABILITIES
2018-02-02 13:42:42.133 Info, contrlr, Serial API Version: 1.0
2018-02-02 13:42:42.133 Info, contrlr, Manufacturer ID: 0x0086
2018-02-02 13:42:42.133 Info, contrlr, Product Type: 0x0001
2018-02-02 13:42:42.133 Info, contrlr, Product ID: 0x005a
2018-02-02 13:42:42.134 Detail, contrlr, Queuing (Command) FUNC_ID_ZW_GET_RANDOM: 0x01, 0x04, 0x00, 0x1c, 0x20, 0xc7
2018-02-02 13:42:42.134 Detail, contrlr, Queuing (Command) FUNC_ID_SERIAL_API_GET_INIT_DATA: 0x01, 0x03, 0x00, 0x02, 0xfe
2018-02-02 13:42:42.134 Detail, contrlr, Queuing (Command) FUNC_ID_SERIAL_API_SET_TIMEOUTS: 0x01, 0x05, 0x00, 0x06, 0x64, 0x0f, 0x97
2018-02-02 13:42:42.134 Detail, contrlr, Queuing (Command) FUNC_ID_SERIAL_API_APPL_NODE_INFORMATION: 0x01, 0x07, 0x00, 0x03, 0x01, 0x02, 0x01, 0x00, 0xf9
2018-02-02 13:42:42.134 Detail, Expected reply was received
2018-02-02 13:42:42.134 Detail, Message transaction complete
2018-02-02 13:42:42.134 Detail,
2018-02-02 13:42:42.134 Detail, contrlr, Removing current message
2018-02-02 13:42:42.134 Detail,
2018-02-02 13:42:42.135 Info, contrlr, Sending (Command) message (Callback ID=0x00, Expected Reply=0x56) - FUNC_ID_ZW_GET_SUC_NODE_ID: 0x01, 0x03, 0x00, 0x56, 0xaa
2018-02-02 13:42:42.137 Detail, contrlr, Received: 0x01, 0x04, 0x01, 0x56, 0x00, 0xac
2018-02-02 13:42:42.137 Detail,
2018-02-02 13:42:42.137 Info, contrlr, Received reply to GET_SUC_NODE_ID. Node ID = 0
2018-02-02 13:42:42.137 Info, Controller Does not Support SUC - Cannot Setup Controller as SUC Node
2018-02-02 13:42:42.137 Detail, Node172, Expected reply was received
2018-02-02 13:42:42.137 Detail, Node172, Message transaction complete
2018-02-02 13:42:42.137 Detail,
2018-02-02 13:42:42.137 Detail, contrlr, Removing current message
2018-02-02 13:42:42.138 Detail,
2018-02-02 13:42:42.138 Info, contrlr, Sending (Command) message (Callback ID=0x00, Expected Reply=0x1c) - FUNC_ID_ZW_GET_RANDOM: 0x01, 0x04, 0x00, 0x1c, 0x20, 0xc7
2018-02-02 13:42:42.194 Detail, contrlr, Received: 0x01, 0x25, 0x01, 0x1c, 0x01, 0x20, 0x6a, 0x45, 0xb8, 0x5e, 0x1f, 0x8b, 0x07, 0xdb, 0x5c, 0xdd, 0xe5, 0xc6, 0xd7, 0x65, 0xc2, 0x19, 0xc1, 0xc9, 0x79, 0xa5, 0xb7, 0x90, 0xd9, 0x8c, 0x99, 0xb2, 0xb0, 0x45, 0x5c, 0x76, 0xbf, 0x5b, 0x1a
2018-02-02 13:42:42.195 Detail,
2018-02-02 13:42:42.195 Info, contrlr, Received reply to FUNC_ID_ZW_GET_RANDOM: true
2018-02-02 13:42:42.195 Detail, Node032, Expected reply was received
2018-02-02 13:42:42.195 Detail, Node032, Message transaction complete
2018-02-02 13:42:42.195 Detail,
2018-02-02 13:42:42.195 Detail, contrlr, Removing current message
2018-02-02 13:42:42.195 Detail,
2018-02-02 13:42:42.195 Info, contrlr, Sending (Command) message (Callback ID=0x00, Expected Reply=0x02) - FUNC_ID_SERIAL_API_GET_INIT_DATA: 0x01, 0x03, 0x00, 0x02, 0xfe
2018-02-02 13:42:42.297 Detail, contrlr, Received: 0x01, 0x25, 0x01, 0x02, 0x05, 0x00, 0x1d, 0xbf, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x78
2018-02-02 13:42:42.297 Detail,
2018-02-02 13:42:42.297 Info, mgr, Driver with Home ID of 0xff7de492 is now ready.
2018-02-02 13:42:42.297 Info,
2018-02-02 13:42:42.375 Detail, Node003, Queuing (Controller) Delete All Return Routes
2018-02-02 13:42:42.375 Detail, Node003, Queuing (Controller) Assign Return Route
2018-02-02 13:42:42.377 Detail, Node004, Queuing (Controller) Delete All Return Routes
2018-02-02 13:42:42.377 Detail, Node004, Queuing (Controller) Assign Return Route
2018-02-02 13:42:42.380 Detail, Node005, Queuing (Controller) Delete All Return Routes
2018-02-02 13:42:42.380 Detail, Node005, Queuing (Controller) Assign Return Route
2018-02-02 13:42:42.381 Detail, Node006, Queuing (Controller) Delete All Return Routes
2018-02-02 13:42:42.383 Detail, Node006, Queuing (Controller) Assign Return Route
2018-02-02 13:42:42.384 Detail, Node008, Queuing (Controller) Delete All Return Routes
2018-02-02 13:42:42.384 Detail, Node008, Queuing (Controller) Assign Return Route
2018-02-02 13:42:42.385 Detail, Node009, Queuing (Controller) Delete All Return Routes
2018-02-02 13:42:42.385 Detail, Node009, Queuing (Controller) Assign Return Route
2018-02-02 13:42:42.387 Detail, Node010, Queuing (Controller) Delete All Return Routes
2018-02-02 13:42:42.387 Detail, Node010, Queuing (Controller) Assign Return Route
2018-02-02 13:42:42.398 Info, contrlr, Received reply to FUNC_ID_SERIAL_API_GET_INIT_DATA:
2018-02-02 13:42:42.398 Info, contrlr, Node 001 - Known
2018-02-02 13:42:42.399 Detail, Node001, AdvanceQueries queryPending=0 queryRetries=0 queryStage=CacheLoad live=1
2018-02-02 13:42:42.399 Detail, Node001, QueryStage_CacheLoad
2018-02-02 13:42:42.399 Info, Node001, Node Identity Codes: 0086:0001:005a
2018-02-02 13:42:42.399 Detail, Node001, QueryStage_Associations
2018-02-02 13:42:42.399 Detail, Node001, QueryStage_Neighbors
2018-02-02 13:42:42.399 Detail, contrlr, Requesting routing info (neighbor list) for Node 1
2018-02-02 13:42:42.399 Detail, Node001, Queuing (Command) Get Routing Info (Node=1): 0x01, 0x07, 0x00, 0x80, 0x01, 0x00, 0x00, 0x03, 0x7a
2018-02-02 13:42:42.399 Detail, Node001, Queuing (Query) Query Stage Complete (Neighbors)
2018-02-02 13:42:42.399 Info, contrlr, Node 002 - Known
2018-02-02 13:42:42.399 Detail, Node002, AdvanceQueries queryPending=0 queryRetries=0 queryStage=Probe live=1
2018-02-02 13:42:42.399 Detail, Node002, QueryStage_Probe
2018-02-02 13:42:42.399 Info, Node002, NoOperation::Set - Routing=true
2018-02-02 13:42:42.399 Detail, Node002, Queuing (NoOp) NoOperation_Set (Node=2): 0x01, 0x09, 0x00, 0x13, 0x02, 0x02, 0x00, 0x00, 0x25, 0x0a, 0xca
2018-02-02 13:42:42.399 Detail, Node002, Queuing (Query) Query Stage Complete (Probe)
2018-02-02 13:42:42.399 Info, contrlr, Node 003 - Known
2018-02-02 13:42:42.399 Detail, Node003, AdvanceQueries queryPending=0 queryRetries=0 queryStage=CacheLoad live=1
2018-02-02 13:42:42.399 Detail, Node003, QueryStage_CacheLoad
2018-02-02 13:42:42.399 Info, Node003, Node Identity Codes: 010f:0602:1001
2018-02-02 13:42:42.399 Info, Node003, NoOperation::Set - Routing=true
2018-02-02 13:42:42.399 Detail, Node003, Queuing (NoOp) NoOperation_Set (Node=3): 0x01, 0x09, 0x00, 0x13, 0x03, 0x02, 0x00, 0x00, 0x25, 0x0b, 0xca
2018-02-02 13:42:42.399 Detail, Node003, Queuing (Query) Query Stage Complete (CacheLoad)
2018-02-02 13:42:42.400 Info, contrlr, Node 004 - Known
2018-02-02 13:42:42.400 Detail, Node004, AdvanceQueries queryPending=0 queryRetries=0 queryStage=CacheLoad live=1
2018-02-02 13:42:42.400 Detail, Node004, QueryStage_CacheLoad
2018-02-02 13:42:42.400 Info, Node004, Node Identity Codes: 010f:0602:1001
2018-02-02 13:42:42.400 Info, Node004, NoOperation::Set - Routing=true
2018-02-02 13:42:42.400 Detail, Node004, Queuing (NoOp) NoOperation_Set (Node=4): 0x01, 0x09, 0x00, 0x13, 0x04, 0x02, 0x00, 0x00, 0x25, 0x0c, 0xca
2018-02-02 13:42:42.400 Detail, Node004, Queuing (Query) Query Stage Complete (CacheLoad)
2018-02-02 13:42:42.400 Info, contrlr, Node 005 - Known
2018-02-02 13:42:42.400 Detail, Node005, AdvanceQueries queryPending=0 queryRetries=0 queryStage=CacheLoad live=1
2018-02-02 13:42:42.400 Detail, Node005, QueryStage_CacheLoad
2018-02-02 13:42:42.400 Info, Node005, Node Identity Codes: 010f:0602:1001
2018-02-02 13:42:42.400 Info, Node005, NoOperation::Set - Routing=true
2018-02-02 13:42:42.400 Detail, Node005, Queuing (NoOp) NoOperation_Set (Node=5): 0x01, 0x09, 0x00, 0x13, 0x05, 0x02, 0x00, 0x00, 0x25, 0x0d, 0xca
2018-02-02 13:42:42.400 Detail, Node005, Queuing (Query) Query Stage Complete (CacheLoad)
2018-02-02 13:42:42.400 Info, contrlr, Node 006 - Known
2018-02-02 13:42:42.400 Detail, Node006, AdvanceQueries queryPending=0 queryRetries=0 queryStage=CacheLoad live=1
2018-02-02 13:42:42.400 Detail, Node006, QueryStage_CacheLoad
2018-02-02 13:42:42.400 Info, Node006, Node Identity Codes: 0176:0003:0001
2018-02-02 13:42:42.400 Info, Node006, NoOperation::Set - Routing=true
2018-02-02 13:42:42.400 Detail, Node006, Queuing (NoOp) NoOperation_Set (Node=6): 0x01, 0x09, 0x00, 0x13, 0x06, 0x02, 0x00, 0x00, 0x25, 0x0e, 0xca
2018-02-02 13:42:42.400 Detail, Node006, Queuing (Query) Query Stage Complete (CacheLoad)
2018-02-02 13:42:42.401 Info, contrlr, Node 008 - Known
2018-02-02 13:42:42.401 Detail, Node008, AdvanceQueries queryPending=0 queryRetries=0 queryStage=CacheLoad live=1
2018-02-02 13:42:42.401 Detail, Node008, QueryStage_CacheLoad
2018-02-02 13:42:42.401 Info, Node008, Node Identity Codes: 0176:0003:0001
2018-02-02 13:42:42.401 Info, Node008, NoOperation::Set - Routing=true
2018-02-02 13:42:42.401 Detail, Node008, Queuing (NoOp) NoOperation_Set (Node=8): 0x01, 0x09, 0x00, 0x13, 0x08, 0x02, 0x00, 0x00, 0x25, 0x0f, 0xc5
2018-02-02 13:42:42.401 Detail, Node008, Queuing (Query) Query Stage Complete (CacheLoad)
2018-02-02 13:42:42.401 Info, contrlr, Node 009 - Known
2018-02-02 13:42:42.401 Detail, Node009, AdvanceQueries queryPending=0 queryRetries=0 queryStage=CacheLoad live=1
2018-02-02 13:42:42.401 Detail, Node009, QueryStage_CacheLoad
2018-02-02 13:42:42.401 Info, Node009, Node Identity Codes: 0176:0003:0001
2018-02-02 13:42:42.401 Info, Node009, NoOperation::Set - Routing=true
2018-02-02 13:42:42.401 Detail, Node009, Queuing (NoOp) NoOperation_Set (Node=9): 0x01, 0x09, 0x00, 0x13, 0x09, 0x02, 0x00, 0x00, 0x25, 0x10, 0xdb
2018-02-02 13:42:42.401 Detail, Node009, Queuing (Query) Query Stage Complete (CacheLoad)
2018-02-02 13:42:42.401 Info, contrlr, Node 010 - Known
2018-02-02 13:42:42.401 Detail, Node010, AdvanceQueries queryPending=0 queryRetries=0 queryStage=CacheLoad live=1
2018-02-02 13:42:42.401 Detail, Node010, QueryStage_CacheLoad
2018-02-02 13:42:42.401 Info, Node010, Node Identity Codes: 010f:0801:1001
2018-02-02 13:42:42.401 Info, Node010, NoOperation::Set - Routing=true
2018-02-02 13:42:42.402 Detail, Node010, Queuing (NoOp) NoOperation_Set (Node=10): 0x01, 0x09, 0x00, 0x13, 0x0a, 0x02, 0x00, 0x00, 0x25, 0x11, 0xd9
2018-02-02 13:42:42.402 Detail, Node010, Queuing (Query) Query Stage Complete (CacheLoad)
2018-02-02 13:42:42.402 Detail, Expected reply was received
2018-02-02 13:42:42.402 Detail, Message transaction complete
2018-02-02 13:42:42.402 Detail,
2018-02-02 13:42:42.402 Detail, contrlr, Removing current message
2018-02-02 13:42:42.403 Detail, Node001, Notification: DriverReady
2018-02-02 13:42:42.407 Detail, Node001, Notification: NodeAdded
2018-02-02 13:42:42.442 Detail, Node001, Notification: NodeProtocolInfo
2018-02-02 13:42:42.444 Detail, Node001, Notification: EssentialNodeQueriesComplete
2018-02-02 13:42:42.451 Detail, Node001, Notification: ValueAdded
2018-02-02 13:42:42.455 Detail, Node001, Notification: NodeNaming
2018-02-02 13:42:42.458 Detail, Node002, Notification: NodeAdded
2018-02-02 13:42:42.481 Detail, Node002, Notification: NodeProtocolInfo
2018-02-02 13:42:42.485 Detail, Node002, Notification: ValueAdded
2018-02-02 13:42:42.487 Detail, Node002, Notification: ValueAdded
2018-02-02 13:42:42.488 Detail, Node003, Notification: NodeAdded
2018-02-02 13:42:42.502 Detail, Node003, Notification: NodeProtocolInfo
2018-02-02 13:42:42.561 Detail, Node003, Notification: EssentialNodeQueriesComplete
2018-02-02 13:42:42.566 Detail, Node003, Notification: ValueAdded
2018-02-02 13:42:42.603 Detail, Node003, Notification: ValueAdded
2018-02-02 13:42:42.618 Detail, Node003, Notification: ValueAdded
2018-02-02 13:42:42.667 Detail, Node003, Notification: ValueAdded
2018-02-02 13:42:42.699 Detail, Node003, Notification: ValueAdded
2018-02-02 13:42:42.729 Detail, Node003, Notification: ValueAdded
2018-02-02 13:42:42.742 Detail, Node003, Notification: ValueAdded
2018-02-02 13:42:42.772 Detail, Node003, Notification: ValueAdded
2018-02-02 13:42:42.783 Detail, Node003, Notification: ValueAdded
2018-02-02 13:42:42.788 Detail, Node003, Notification: ValueAdded
2018-02-02 13:42:42.793 Detail, Node003, Notification: ValueAdded
2018-02-02 13:42:42.797 Detail, Node003, Notification: ValueAdded
2018-02-02 13:42:42.815 Detail, Node003, Notification: ValueAdded
2018-02-02 13:42:42.822 Detail, Node003, Notification: ValueAdded
2018-02-02 13:42:42.830 Detail, Node003, Notification: ValueAdded
2018-02-02 13:42:42.840 Detail, Node003, Notification: ValueAdded
2018-02-02 13:42:42.875 Detail, Node003, Notification: ValueAdded
2018-02-02 13:42:42.890 Detail, Node003, Notification: ValueAdded
2018-02-02 13:42:42.895 Detail, Node003, Notification: ValueAdded
2018-02-02 13:42:42.898 Detail, Node003, Notification: ValueAdded
2018-02-02 13:42:42.900 Detail, Node003, Notification: ValueAdded
2018-02-02 13:42:42.913 Detail, Node003, Notification: ValueAdded
2018-02-02 13:42:42.919 Detail, Node003, Notification: ValueAdded
2018-02-02 13:42:42.933 Detail, Node003, Notification: ValueAdded
2018-02-02 13:42:42.937 Detail, Node003, Notification: ValueAdded
2018-02-02 13:42:42.941 Detail, Node003, Notification: ValueAdded
2018-02-02 13:42:42.942 Detail, Node003, Notification: ValueAdded
2018-02-02 13:42:42.946 Detail, Node003, Notification: ValueAdded
2018-02-02 13:42:42.949 Detail, Node003, Notification: ValueAdded
2018-02-02 13:42:42.951 Detail, Node003, Notification: ValueAdded
2018-02-02 13:42:42.954 Detail, Node003, Notification: ValueAdded
2018-02-02 13:42:42.957 Detail, Node003, Notification: ValueAdded
2018-02-02 13:42:42.968 Detail, Node003, Notification: ValueAdded
2018-02-02 13:42:42.977 Detail, Node003, Notification: ValueAdded
2018-02-02 13:42:42.997 Detail, Node003, Notification: ValueAdded
2018-02-02 13:42:43.024 Detail, Node003, Notification: ValueAdded
2018-02-02 13:42:43.047 Detail, Node003, Notification: ValueAdded
2018-02-02 13:42:43.048 Detail, Node003, Notification: ValueAdded
2018-02-02 13:42:43.071 Detail, Node003, Notification: ValueAdded
2018-02-02 13:42:43.073 Detail, Node003, Notification: ValueAdded
2018-02-02 13:42:43.082 Detail, Node003, Notification: ValueAdded
2018-02-02 13:42:43.084 Detail, Node003, Notification: ValueAdded
2018-02-02 13:42:43.112 Detail, Node003, Notification: ValueAdded
2018-02-02 13:42:43.115 Detail, Node003, Notification: ValueAdded
2018-02-02 13:42:43.122 Detail, Node003, Notification: ValueAdded
2018-02-02 13:42:43.125 Detail, Node003, Notification: ValueAdded
2018-02-02 13:42:43.218 Detail, Node003, Notification: Group
2018-02-02 13:42:43.224 Detail, Node003, Notification: Group
2018-02-02 13:42:43.225 Detail, Node003, Notification: Group
2018-02-02 13:42:43.230 Detail, Node003, Notification: ValueAdded
2018-02-02 13:42:43.237 Detail, Node003, Notification: ValueAdded
2018-02-02 13:42:43.261 Detail, Node003, Notification: ValueAdded
2018-02-02 13:42:43.264 Detail, Node003, Notification: Group
2018-02-02 13:42:43.270 Detail, Node003, Notification: Group
2018-02-02 13:42:43.300 Detail, Node003, Notification: Group
2018-02-02 13:42:43.301 Detail, Node003, Notification: NodeNaming
2018-02-02 13:42:43.326 Detail, Node004, Notification: NodeAdded
2018-02-02 13:42:43.346 Detail, Node004, Notification: NodeProtocolInfo
2018-02-02 13:42:43.361 Detail, Node004, Notification: EssentialNodeQueriesComplete
2018-02-02 13:42:43.363 Detail, Node004, Notification: ValueAdded
2018-02-02 13:42:43.371 Detail, Node004, Notification: ValueAdded
2018-02-02 13:42:43.381 Detail, Node004, Notification: ValueAdded
2018-02-02 13:42:43.418 Detail, Node004, Notification: ValueAdded
2018-02-02 13:42:43.479 Detail, Node004, Notification: ValueAdded
2018-02-02 13:42:43.498 Detail, Node004, Notification: ValueAdded
2018-02-02 13:42:43.521 Detail, Node004, Notification: ValueAdded
2018-02-02 13:42:43.529 Detail, Node004, Notification: ValueAdded
2018-02-02 13:42:43.534 Detail, Node004, Notification: ValueAdded
2018-02-02 13:42:43.549 Detail, Node004, Notification: ValueAdded
2018-02-02 13:42:43.556 Detail, Node004, Notification: ValueAdded
2018-02-02 13:42:43.565 Detail, Node004, Notification: ValueAdded
2018-02-02 13:42:43.578 Detail, Node004, Notification: ValueAdded
2018-02-02 13:42:43.587 Detail, Node004, Notification: ValueAdded
2018-02-02 13:42:43.592 Detail, Node004, Notification: ValueAdded
2018-02-02 13:42:43.597 Detail, Node004, Notification: ValueAdded
2018-02-02 13:42:43.608 Detail, Node004, Notification: ValueAdded
2018-02-02 13:42:43.614 Detail, Node004, Notification: ValueAdded
2018-02-02 13:42:43.618 Detail, Node004, Notification: ValueAdded
2018-02-02 13:42:43.626 Detail, Node004, Notification: ValueAdded
2018-02-02 13:42:43.630 Detail, Node004, Notification: ValueAdded
2018-02-02 13:42:43.633 Detail, Node004, Notification: ValueAdded
2018-02-02 13:42:43.639 Detail, Node004, Notification: ValueAdded
2018-02-02 13:42:43.642 Detail, Node004, Notification: ValueAdded
2018-02-02 13:42:43.645 Detail, Node004, Notification: ValueAdded
2018-02-02 13:42:43.648 Detail, Node004, Notification: ValueAdded
2018-02-02 13:42:43.673 Detail, Node004, Notification: ValueAdded
2018-02-02 13:42:43.678 Detail, Node004, Notification: ValueAdded
2018-02-02 13:42:43.681 Detail, Node004, Notification: ValueAdded
2018-02-02 13:42:43.690 Detail, Node004, Notification: ValueAdded
2018-02-02 13:42:43.694 Detail, Node004, Notification: ValueAdded
2018-02-02 13:42:43.698 Detail, Node004, Notification: ValueAdded
2018-02-02 13:42:43.702 Detail, Node004, Notification: ValueAdded
2018-02-02 13:42:43.715 Detail, Node004, Notification: ValueAdded
2018-02-02 13:42:43.741 Detail, Node004, Notification: ValueAdded
2018-02-02 13:42:43.776 Detail, Node004, Notification: ValueAdded
2018-02-02 13:42:43.803 Detail, Node004, Notification: ValueAdded
2018-02-02 13:42:43.811 Detail, Node004, Notification: ValueAdded
2018-02-02 13:42:43.818 Detail, Node004, Notification: ValueAdded
2018-02-02 13:42:43.836 Detail, Node004, Notification: ValueAdded
2018-02-02 13:42:43.839 Detail, Node004, Notification: ValueAdded
2018-02-02 13:42:43.845 Detail, Node004, Notification: ValueAdded
2018-02-02 13:42:43.851 Detail, Node004, Notification: ValueAdded
2018-02-02 13:42:43.857 Detail, Node004, Notification: ValueAdded
2018-02-02 13:42:43.887 Detail, Node004, Notification: ValueAdded
2018-02-02 13:42:43.890 Detail, Node004, Notification: ValueAdded
2018-02-02 13:42:43.894 Detail, Node004, Notification: Group
2018-02-02 13:42:43.894 Detail, Node004, Notification: Group
2018-02-02 13:42:43.895 Detail, Node004, Notification: Group
2018-02-02 13:42:43.895 Detail, Node004, Notification: ValueAdded
2018-02-02 13:42:43.898 Detail, Node004, Notification: ValueAdded
2018-02-02 13:42:43.901 Detail, Node004, Notification: ValueAdded
2018-02-02 13:42:43.910 Detail, Node004, Notification: Group
2018-02-02 13:42:43.911 Detail, Node004, Notification: Group
2018-02-02 13:42:43.913 Detail, Node004, Notification: Group
2018-02-02 13:42:43.913 Detail, Node004, Notification: NodeNaming
2018-02-02 13:42:43.918 Detail, Node005, Notification: NodeAdded
2018-02-02 13:42:43.935 Detail, Node005, Notification: NodeProtocolInfo
2018-02-02 13:42:43.938 Detail, Node005, Notification: EssentialNodeQueriesComplete
2018-02-02 13:42:43.939 Detail, Node005, Notification: ValueAdded
2018-02-02 13:42:43.947 Detail, Node005, Notification: ValueAdded
2018-02-02 13:42:43.956 Detail, Node005, Notification: ValueAdded
2018-02-02 13:42:43.974 Detail, Node005, Notification: ValueAdded
2018-02-02 13:42:43.997 Detail, Node005, Notification: ValueAdded
2018-02-02 13:42:44.032 Detail, Node005, Notification: ValueAdded
2018-02-02 13:42:44.097 Detail, Node005, Notification: ValueAdded
2018-02-02 13:42:44.107 Detail, Node005, Notification: ValueAdded
2018-02-02 13:42:44.120 Detail, Node005, Notification: ValueAdded
2018-02-02 13:42:44.133 Detail, Node005, Notification: ValueAdded
2018-02-02 13:42:44.137 Detail, Node005, Notification: ValueAdded
2018-02-02 13:42:44.141 Detail, Node005, Notification: ValueAdded
2018-02-02 13:42:44.163 Detail, Node005, Notification: ValueAdded
2018-02-02 13:42:44.171 Detail, Node005, Notification: ValueAdded
2018-02-02 13:42:44.203 Detail, Node005, Notification: ValueAdded
2018-02-02 13:42:44.216 Detail, Node005, Notification: ValueAdded
2018-02-02 13:42:44.219 Detail, Node005, Notification: ValueAdded
2018-02-02 13:42:44.241 Detail, Node005, Notification: ValueAdded
2018-02-02 13:42:44.243 Detail, Node005, Notification: ValueAdded
2018-02-02 13:42:44.263 Detail, Node005, Notification: ValueAdded
2018-02-02 13:42:44.265 Detail, Node005, Notification: ValueAdded
2018-02-02 13:42:44.270 Detail, Node005, Notification: ValueAdded
2018-02-02 13:42:44.272 Detail, Node005, Notification: ValueAdded
2018-02-02 13:42:44.274 Detail, Node005, Notification: ValueAdded
2018-02-02 13:42:44.276 Detail, Node005, Notification: ValueAdded
2018-02-02 13:42:44.277 Detail, Node005, Notification: ValueAdded
2018-02-02 13:42:44.279 Detail, Node005, Notification: ValueAdded
2018-02-02 13:42:44.281 Detail, Node005, Notification: ValueAdded
2018-02-02 13:42:44.282 Detail, Node005, Notification: ValueAdded
2018-02-02 13:42:44.300 Detail, Node005, Notification: ValueAdded
2018-02-02 13:42:44.302 Detail, Node005, Notification: ValueAdded
2018-02-02 13:42:44.304 Detail, Node005, Notification: ValueAdded
2018-02-02 13:42:44.306 Detail, Node005, Notification: ValueAdded
2018-02-02 13:42:44.313 Detail, Node005, Notification: ValueAdded
2018-02-02 13:42:44.319 Detail, Node005, Notification: ValueAdded
2018-02-02 13:42:44.326 Detail, Node005, Notification: ValueAdded
2018-02-02 13:42:44.333 Detail, Node005, Notification: ValueAdded
2018-02-02 13:42:44.335 Detail, Node005, Notification: ValueAdded
2018-02-02 13:42:44.336 Detail, Node005, Notification: ValueAdded
2018-02-02 13:42:44.343 Detail, Node005, Notification: ValueAdded
2018-02-02 13:42:44.348 Detail, Node005, Notification: ValueAdded
2018-02-02 13:42:44.353 Detail, Node005, Notification: ValueAdded
2018-02-02 13:42:44.360 Detail, Node005, Notification: ValueAdded
2018-02-02 13:42:44.363 Detail, Node005, Notification: ValueAdded
2018-02-02 13:42:44.365 Detail, Node005, Notification: ValueAdded
2018-02-02 13:42:44.369 Detail, Node005, Notification: ValueAdded
2018-02-02 13:42:44.371 Detail, Node005, Notification: Group
2018-02-02 13:42:44.373 Detail, Node005, Notification: Group
2018-02-02 13:42:44.373 Detail, Node005, Notification: Group
2018-02-02 13:42:44.373 Detail, Node005, Notification: ValueAdded
2018-02-02 13:42:44.375 Detail, Node005, Notification: ValueAdded
2018-02-02 13:42:44.377 Detail, Node005, Notification: ValueAdded
2018-02-02 13:42:44.393 Detail, Node005, Notification: Group
2018-02-02 13:42:44.394 Detail, Node005, Notification: Group
2018-02-02 13:42:44.394 Detail, Node005, Notification: Group
2018-02-02 13:42:44.394 Detail, Node005, Notification: NodeNaming
2018-02-02 13:42:44.397 Detail, Node006, Notification: NodeAdded
2018-02-02 13:42:44.652 Detail, Node006, Notification: NodeProtocolInfo
2018-02-02 13:42:44.672 Detail, Node006, Notification: EssentialNodeQueriesComplete
2018-02-02 13:42:44.673 Detail, Node006, Notification: ValueAdded
2018-02-02 13:42:44.683 Detail, Node006, Notification: ValueAdded
2018-02-02 13:42:44.686 Detail, Node006, Notification: ValueAdded
2018-02-02 13:42:44.690 Detail, Node006, Notification: ValueAdded
2018-02-02 13:42:44.701 Detail, Node006, Notification: ValueAdded
2018-02-02 13:42:44.716 Detail, Node006, Notification: ValueAdded
2018-02-02 13:42:44.721 Detail, Node006, Notification: ValueAdded
2018-02-02 13:42:44.725 Detail, Node006, Notification: ValueAdded
2018-02-02 13:42:44.727 Detail, Node006, Notification: ValueAdded
2018-02-02 13:42:44.730 Detail, Node006, Notification: ValueAdded
2018-02-02 13:42:44.735 Detail, Node006, Notification: ValueAdded
2018-02-02 13:42:44.738 Detail, Node006, Notification: ValueAdded
2018-02-02 13:42:44.742 Detail, Node006, Notification: ValueAdded
2018-02-02 13:42:44.746 Detail, Node006, Notification: ValueAdded
2018-02-02 13:42:44.749 Detail, Node006, Notification: ValueAdded
2018-02-02 13:42:44.759 Detail, Node006, Notification: ValueAdded
2018-02-02 13:42:44.762 Detail, Node006, Notification: ValueAdded
2018-02-02 13:42:44.764 Detail, Node006, Notification: ValueAdded
2018-02-02 13:42:44.767 Detail, Node006, Notification: ValueAdded
2018-02-02 13:42:44.770 Detail, Node006, Notification: Group
2018-02-02 13:42:44.776 Detail, Node006, Notification: Group
2018-02-02 13:42:44.804 Detail, Node006, Notification: ValueAdded
2018-02-02 13:42:44.808 Detail, Node006, Notification: ValueAdded
2018-02-02 13:42:44.810 Detail, Node006, Notification: ValueAdded
2018-02-02 13:42:44.812 Detail, Node006, Notification: NodeNaming
2018-02-02 13:42:44.815 Detail, Node008, Notification: NodeAdded
2018-02-02 13:42:45.080 Detail, Node008, Notification: NodeProtocolInfo
2018-02-02 13:42:45.171 Detail, Node008, Notification: EssentialNodeQueriesComplete
2018-02-02 13:42:45.171 Detail, Node008, Notification: ValueAdded
2018-02-02 13:42:45.289 Detail, Node008, Notification: ValueAdded
2018-02-02 13:42:45.319 Detail, Node008, Notification: ValueAdded
2018-02-02 13:42:45.325 Detail, Node008, Notification: ValueAdded
2018-02-02 13:42:45.437 Detail, Node008, Notification: ValueAdded
2018-02-02 13:42:45.528 Detail, Node008, Notification: ValueAdded
2018-02-02 13:42:45.560 Detail, Node008, Notification: ValueAdded
2018-02-02 13:42:45.589 Detail, Node008, Notification: ValueAdded
2018-02-02 13:42:45.621 Detail, Node008, Notification: ValueAdded
2018-02-02 13:42:45.694 Detail, Node008, Notification: ValueAdded
2018-02-02 13:42:45.709 Detail, Node008, Notification: ValueAdded
2018-02-02 13:42:45.725 Detail, Node008, Notification: ValueAdded
2018-02-02 13:42:45.746 Detail, Node008, Notification: ValueAdded
2018-02-02 13:42:45.756 Detail, Node008, Notification: ValueAdded
2018-02-02 13:42:45.771 Detail, Node008, Notification: ValueAdded
2018-02-02 13:42:45.786 Detail, Node008, Notification: ValueAdded
2018-02-02 13:42:45.801 Detail, Node008, Notification: ValueAdded
2018-02-02 13:42:45.915 Detail, Node008, Notification: ValueAdded
2018-02-02 13:42:45.938 Detail, Node008, Notification: ValueAdded
2018-02-02 13:42:45.943 Detail, Node008, Notification: Group
2018-02-02 13:42:45.947 Detail, Node008, Notification: Group
2018-02-02 13:42:45.958 Detail, Node008, Notification: ValueAdded
2018-02-02 13:42:45.971 Detail, Node008, Notification: ValueAdded
2018-02-02 13:42:45.988 Detail, Node008, Notification: ValueAdded
2018-02-02 13:42:46.036 Detail, Node008, Notification: NodeNaming
2018-02-02 13:42:46.041 Detail, Node009, Notification: NodeAdded
2018-02-02 13:42:46.419 Detail, Node009, Notification: NodeProtocolInfo
2018-02-02 13:42:46.424 Detail, Node009, Notification: EssentialNodeQueriesComplete
2018-02-02 13:42:46.442 Detail, Node009, Notification: ValueAdded
2018-02-02 13:42:46.529 Detail, Node009, Notification: ValueAdded
2018-02-02 13:42:46.575 Detail, Node009, Notification: ValueAdded
2018-02-02 13:42:46.581 Detail, Node009, Notification: ValueAdded
2018-02-02 13:42:46.586 Detail, Node009, Notification: ValueAdded
2018-02-02 13:42:46.606 Detail, Node009, Notification: ValueAdded
2018-02-02 13:42:46.636 Detail, Node009, Notification: ValueAdded
2018-02-02 13:42:46.651 Detail, Node009, Notification: ValueAdded
2018-02-02 13:42:46.677 Detail, Node009, Notification: ValueAdded
2018-02-02 13:42:46.705 Detail, Node009, Notification: ValueAdded
2018-02-02 13:42:46.716 Detail, Node009, Notification: ValueAdded
2018-02-02 13:42:46.720 Detail, Node009, Notification: ValueAdded
2018-02-02 13:42:46.741 Detail, Node009, Notification: ValueAdded
2018-02-02 13:42:46.761 Detail, Node009, Notification: ValueAdded
2018-02-02 13:42:46.787 Detail, Node009, Notification: ValueAdded
2018-02-02 13:42:46.816 Detail, Node009, Notification: ValueAdded
2018-02-02 13:42:46.823 Detail, Node009, Notification: ValueAdded
2018-02-02 13:42:46.842 Detail, Node009, Notification: ValueAdded
2018-02-02 13:42:46.854 Detail, Node009, Notification: ValueAdded
2018-02-02 13:42:46.864 Detail, Node009, Notification: Group
2018-02-02 13:42:46.875 Detail, Node009, Notification: Group
2018-02-02 13:42:46.882 Detail, Node009, Notification: ValueAdded
2018-02-02 13:42:46.902 Detail, Node009, Notification: ValueAdded
2018-02-02 13:42:46.912 Detail, Node009, Notification: ValueAdded
2018-02-02 13:42:46.924 Detail, Node009, Notification: NodeNaming
2018-02-02 13:42:46.939 Detail, Node010, Notification: NodeAdded
2018-02-02 13:42:47.007 Detail, Node010, Notification: NodeProtocolInfo
2018-02-02 13:42:47.027 Detail, Node010, Notification: EssentialNodeQueriesComplete
2018-02-02 13:42:47.040 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.048 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.111 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.190 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.228 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.260 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.269 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.276 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.290 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.307 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.328 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.331 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.341 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.351 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.368 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.377 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.386 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.403 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.418 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.424 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.428 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.438 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.446 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.455 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.459 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.462 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.471 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.481 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.491 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.501 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.507 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.538 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.542 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.556 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.569 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.574 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.601 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.609 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.619 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.724 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.756 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.795 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.826 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.830 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.833 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.847 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.857 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.925 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.937 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.944 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.953 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.972 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.981 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:47.995 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:48.004 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:48.012 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:48.020 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:48.029 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:48.037 Detail, Node010, Notification: Group
2018-02-02 13:42:48.043 Detail, Node010, Notification: Group
2018-02-02 13:42:48.048 Detail, Node010, Notification: Group
2018-02-02 13:42:48.054 Detail, Node010, Notification: Group
2018-02-02 13:42:48.063 Detail, Node010, Notification: Group
2018-02-02 13:42:48.068 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:48.077 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:48.085 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:48.093 Detail, Node010, Notification: Group
2018-02-02 13:42:48.100 Detail, Node010, Notification: Group
2018-02-02 13:42:48.113 Detail, Node010, Notification: Group
2018-02-02 13:42:48.114 Detail, Node010, Notification: Group
2018-02-02 13:42:48.114 Detail, Node010, Notification: Group
2018-02-02 13:42:48.116 Detail, Node010, Notification: ValueAdded
2018-02-02 13:42:48.145 Detail, Node010, Notification: NodeNaming
2018-02-02 13:42:48.156 Detail,
2018-02-02 13:42:48.158 Info, contrlr, Sending (Command) message (Callback ID=0x00, Expected Reply=0x06) - FUNC_ID_SERIAL_API_SET_TIMEOUTS: 0x01, 0x05, 0x00, 0x06, 0x64, 0x0f, 0x97
2018-02-02 13:42:48.160 Detail, contrlr, Received: 0x01, 0x05, 0x01, 0x06, 0x64, 0x0f, 0x96
2018-02-02 13:42:48.160 Detail,
2018-02-02 13:42:48.160 Info, contrlr, Received reply to FUNC_ID_SERIAL_API_SET_TIMEOUTS
2018-02-02 13:42:48.161 Detail, Node015, Expected reply was received
2018-02-02 13:42:48.161 Detail, Node015, Message transaction complete
2018-02-02 13:42:48.161 Detail,
2018-02-02 13:42:48.161 Detail, contrlr, Removing current message
2018-02-02 13:42:48.161 Detail,
2018-02-02 13:42:48.161 Info, contrlr, Sending (Command) message (Callback ID=0x00, Expected Reply=0x00) - FUNC_ID_SERIAL_API_APPL_NODE_INFORMATION: 0x01, 0x07, 0x00, 0x03, 0x01, 0x02, 0x01, 0x00, 0xf9
2018-02-02 13:42:48.163 Detail, contrlr, Removing current message
2018-02-02 13:42:48.163 Detail,
2018-02-02 13:42:48.163 Info, Node001, Sending (Command) message (Callback ID=0x00, Expected Reply=0x80) - Get Routing Info (Node=1): 0x01, 0x07, 0x00, 0x80, 0x01, 0x00, 0x00, 0x03, 0x7a
2018-02-02 13:42:48.168 Detail, Node001, Received: 0x01, 0x20, 0x01, 0x80, 0x8e, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd3
2018-02-02 13:42:48.168 Detail,
2018-02-02 13:42:48.168 Info, Node001, Received reply to FUNC_ID_ZW_GET_ROUTING_INFO
2018-02-02 13:42:48.168 Info, Node001, Neighbors of this node are:
2018-02-02 13:42:48.168 Info, Node001, Node 2
2018-02-02 13:42:48.168 Info, Node001, Node 3
2018-02-02 13:42:48.168 Info, Node001, Node 4
2018-02-02 13:42:48.168 Info, Node001, Node 8
2018-02-02 13:42:48.169 Info, Node001, Node 9
2018-02-02 13:42:48.169 Info, Node001, Node 10
2018-02-02 13:42:48.169 Detail, Node003, Expected reply was received
2018-02-02 13:42:48.169 Detail, Node003, Message transaction complete
2018-02-02 13:42:48.169 Detail,
2018-02-02 13:42:48.169 Detail, Node001, Removing current message
2018-02-02 13:42:48.169 Detail,
2018-02-02 13:42:48.169 Info, Node002, Sending (NoOp) message (Callback ID=0x0a, Expected Reply=0x13) - NoOperation_Set (Node=2): 0x01, 0x09, 0x00, 0x13, 0x02, 0x02, 0x00, 0x00, 0x25, 0x0a, 0xca
2018-02-02 13:42:48.180 Detail, Node002, Received: 0x01, 0x04, 0x01, 0x13, 0x01, 0xe8
2018-02-02 13:42:48.181 Detail, Node002, ZW_SEND_DATA delivered to Z-Wave stack
2018-02-02 13:42:52.339 Detail, Node002, Received: 0x01, 0x07, 0x00, 0x13, 0x0a, 0x01, 0x01, 0xa0, 0x41
2018-02-02 13:42:52.339 Detail, Node002, ZW_SEND_DATA Request with callback ID 0x0a received (expected 0x0a)
2018-02-02 13:42:52.339 Info, Node002, WARNING: ZW_SEND_DATA failed. No ACK received - device may be asleep.
2018-02-02 13:42:52.339 Info, Node002, Node 2 has been marked as asleep
2018-02-02 13:42:52.339 Info, Node002, Node not responding - moving QueryStageComplete command to Wake-Up queue
2018-02-02 13:42:52.340 Detail, Node002, Notification: Notification - NoOperation
2018-02-02 13:42:52.344 Detail, Node002, Notification: Notification - Node Asleep
2018-02-02 13:42:52.349 Detail,
2018-02-02 13:42:52.349 Info, Node003, Sending (NoOp) message (Callback ID=0x0b, Expected Reply=0x13) - NoOperation_Set (Node=3): 0x01, 0x09, 0x00, 0x13, 0x03, 0x02, 0x00, 0x00, 0x25, 0x0b, 0xca
2018-02-02 13:42:52.358 Detail, Node003, Received: 0x01, 0x04, 0x01, 0x13, 0x01, 0xe8
2018-02-02 13:42:52.358 Detail, Node003, ZW_SEND_DATA delivered to Z-Wave stack
2018-02-02 13:42:52.417 Detail, Node003, Received: 0x01, 0x07, 0x00, 0x13, 0x0b, 0x00, 0x00, 0x06, 0xe6
2018-02-02 13:42:52.419 Detail, Node003, ZW_SEND_DATA Request with callback ID 0x0b received (expected 0x0b)
2018-02-02 13:42:52.419 Info, Node003, Request RTT 69 Average Request RTT 69
2018-02-02 13:42:52.419 Detail, Expected callbackId was received
2018-02-02 13:42:52.419 Detail, Expected reply was received
2018-02-02 13:42:52.419 Detail, Message transaction complete
2018-02-02 13:42:52.419 Detail,
2018-02-02 13:42:52.419 Detail, Node003, Removing current message
2018-02-02 13:42:52.419 Detail, Node003, Notification: Notification - NoOperation
2018-02-02 13:42:52.426 Detail,
2018-02-02 13:42:52.426 Info, Node004, Sending (NoOp) message (Callback ID=0x0c, Expected Reply=0x13) - NoOperation_Set (Node=4): 0x01, 0x09, 0x00, 0x13, 0x04, 0x02, 0x00, 0x00, 0x25, 0x0c, 0xca
2018-02-02 13:42:52.434 Detail, Node004, Received: 0x01, 0x04, 0x01, 0x13, 0x01, 0xe8
2018-02-02 13:42:52.435 Detail, Node004, ZW_SEND_DATA delivered to Z-Wave stack
2018-02-02 13:42:52.451 Detail, Node004, Received: 0x01, 0x07, 0x00, 0x13, 0x0c, 0x00, 0x00, 0x02, 0xe5
2018-02-02 13:42:52.451 Detail, Node004, ZW_SEND_DATA Request with callback ID 0x0c received (expected 0x0c)
2018-02-02 13:42:52.452 Info, Node004, Request RTT 25 Average Request RTT 25
2018-02-02 13:42:52.452 Detail, Expected callbackId was received
2018-02-02 13:42:52.452 Detail, Expected reply was received
2018-02-02 13:42:52.452 Detail, Message transaction complete
2018-02-02 13:42:52.452 Detail,
2018-02-02 13:42:52.452 Detail, Node004, Removing current message
2018-02-02 13:42:52.452 Detail, Node004, Notification: Notification - NoOperation
2018-02-02 13:42:52.467 Detail,
2018-02-02 13:42:52.467 Info, Node005, Sending (NoOp) message (Callback ID=0x0d, Expected Reply=0x13) - NoOperation_Set (Node=5): 0x01, 0x09, 0x00, 0x13, 0x05, 0x02, 0x00, 0x00, 0x25, 0x0d, 0xca
2018-02-02 13:42:52.475 Detail, Node005, Received: 0x01, 0x04, 0x01, 0x13, 0x01, 0xe8
2018-02-02 13:42:52.475 Detail, Node005, ZW_SEND_DATA delivered to Z-Wave stack
2018-02-02 13:42:52.515 Detail, Node005, Received: 0x01, 0x07, 0x00, 0x13, 0x0d, 0x00, 0x00, 0x04, 0xe2
2018-02-02 13:42:52.515 Detail, Node005, ZW_SEND_DATA Request with callback ID 0x0d received (expected 0x0d)
2018-02-02 13:42:52.515 Info, Node005, Request RTT 48 Average Request RTT 48
2018-02-02 13:42:52.516 Detail, Expected callbackId was received
2018-02-02 13:42:52.516 Detail, Expected reply was received
2018-02-02 13:42:52.516 Detail, Message transaction complete
2018-02-02 13:42:52.516 Detail,
2018-02-02 13:42:52.516 Detail, Node005, Removing current message
2018-02-02 13:42:52.516 Detail, Node005, Notification: Notification - NoOperation
2018-02-02 13:42:52.523 Detail,
2018-02-02 13:42:52.524 Info, Node006, Sending (NoOp) message (Callback ID=0x0e, Expected Reply=0x13) - NoOperation_Set (Node=6): 0x01, 0x09, 0x00, 0x13, 0x06, 0x02, 0x00, 0x00, 0x25, 0x0e, 0xca
2018-02-02 13:42:52.532 Detail, Node006, Received: 0x01, 0x04, 0x01, 0x13, 0x01, 0xe8
2018-02-02 13:42:52.532 Detail, Node006, ZW_SEND_DATA delivered to Z-Wave stack
2018-02-02 13:42:52.573 Detail, Node006, Received: 0x01, 0x07, 0x00, 0x13, 0x0e, 0x00, 0x00, 0x05, 0xe0
2018-02-02 13:42:52.577 Detail, Node006, ZW_SEND_DATA Request with callback ID 0x0e received (expected 0x0e)
2018-02-02 13:42:52.577 Info, Node006, Request RTT 53 Average Request RTT 53
2018-02-02 13:42:52.577 Detail, Expected callbackId was received
2018-02-02 13:42:52.578 Detail, Expected reply was received
2018-02-02 13:42:52.578 Detail, Message transaction complete
2018-02-02 13:42:52.578 Detail,
2018-02-02 13:42:52.578 Detail, Node006, Removing current message
2018-02-02 13:42:52.578 Detail, Node006, Notification: Notification - NoOperation
2018-02-02 13:42:52.585 Detail,
2018-02-02 13:42:52.585 Info, Node008, Sending (NoOp) message (Callback ID=0x0f, Expected Reply=0x13) - NoOperation_Set (Node=8): 0x01, 0x09, 0x00, 0x13, 0x08, 0x02, 0x00, 0x00, 0x25, 0x0f, 0xc5
2018-02-02 13:42:52.593 Detail, Node008, Received: 0x01, 0x04, 0x01, 0x13, 0x01, 0xe8
2018-02-02 13:42:52.594 Detail, Node008, ZW_SEND_DATA delivered to Z-Wave stack
2018-02-02 13:42:52.610 Detail, Node008, Received: 0x01, 0x07, 0x00, 0x13, 0x0f, 0x00, 0x00, 0x03, 0xe7
2018-02-02 13:42:52.610 Detail, Node008, ZW_SEND_DATA Request with callback ID 0x0f received (expected 0x0f)
2018-02-02 13:42:52.610 Info, Node008, Request RTT 24 Average Request RTT 24
2018-02-02 13:42:52.611 Detail, Expected callbackId was received
2018-02-02 13:42:52.611 Detail, Expected reply was received
2018-02-02 13:42:52.611 Detail, Message transaction complete
2018-02-02 13:42:52.611 Detail,
2018-02-02 13:42:52.611 Detail, Node008, Removing current message
2018-02-02 13:42:52.611 Detail, Node008, Notification: Notification - NoOperation
2018-02-02 13:42:52.623 Detail,
2018-02-02 13:42:52.623 Info, Node009, Sending (NoOp) message (Callback ID=0x10, Expected Reply=0x13) - NoOperation_Set (Node=9): 0x01, 0x09, 0x00, 0x13, 0x09, 0x02, 0x00, 0x00, 0x25, 0x10, 0xdb
2018-02-02 13:42:52.632 Detail, Node009, Received: 0x01, 0x04, 0x01, 0x13, 0x01, 0xe8
2018-02-02 13:42:52.632 Detail, Node009, ZW_SEND_DATA delivered to Z-Wave stack
2018-02-02 13:42:52.652 Detail, Node009, Received: 0x01, 0x07, 0x00, 0x13, 0x10, 0x00, 0x00, 0x03, 0xf8
2018-02-02 13:42:52.652 Detail, Node009, ZW_SEND_DATA Request with callback ID 0x10 received (expected 0x10)
2018-02-02 13:42:52.652 Info, Node009, Request RTT 28 Average Request RTT 28
2018-02-02 13:42:52.652 Detail, Expected callbackId was received
2018-02-02 13:42:52.652 Detail, Expected reply was received
2018-02-02 13:42:52.652 Detail, Message transaction complete
2018-02-02 13:42:52.652 Detail,
2018-02-02 13:42:52.653 Detail, Node009, Removing current message
2018-02-02 13:42:52.653 Detail, Node009, Notification: Notification - NoOperation
2018-02-02 13:42:52.661 Detail,
2018-02-02 13:42:52.672 Info, Node010, Sending (NoOp) message (Callback ID=0x11, Expected Reply=0x13) - NoOperation_Set (Node=10): 0x01, 0x09, 0x00, 0x13, 0x0a, 0x02, 0x00, 0x00, 0x25, 0x11, 0xd9
2018-02-02 13:42:52.680 Detail, Node010, Received: 0x01, 0x04, 0x01, 0x13, 0x01, 0xe8
2018-02-02 13:42:52.726 Detail, Node010, ZW_SEND_DATA delivered to Z-Wave stack
2018-02-02 13:43:01.416 Detail, Node010, Received: 0x01, 0x07, 0x00, 0x13, 0x11, 0x01, 0x03, 0x6a, 0x92
2018-02-02 13:43:01.417 Detail, Node010, ZW_SEND_DATA Request with callback ID 0x11 received (expected 0x11)
2018-02-02 13:43:01.417 Info, Node010, WARNING: ZW_SEND_DATA failed. No ACK received - device may be asleep.
2018-02-02 13:43:01.417 Info, Node010, Node 10 has been marked as asleep
2018-02-02 13:43:01.417 Info, Node010, Node not responding - moving controller command to Wake-Up queue: Delete All Return Routes
2018-02-02 13:43:01.417 Info, Node010, Node not responding - moving controller command to Wake-Up queue: Assign Return Route
2018-02-02 13:43:01.417 Info, Node010, Node not responding - moving QueryStageComplete command to Wake-Up queue
2018-02-02 13:43:01.417 Detail, Node010, Notification: Notification - NoOperation
2018-02-02 13:43:01.427 Detail, Node010, Notification: Notification - Node Asleep
2018-02-02 13:43:01.435 Info, Deleting all return routes from node 3
2018-02-02 13:43:01.436 Detail, Node003, Queuing (Command) ControllerCommand_DeleteAllReturnRoutess (Node=3): 0x01, 0x05, 0x00, 0x47, 0x03, 0x12, 0xac
2018-02-02 13:43:01.436 Detail, Notification: ControllerCommand - Starting
2018-02-02 13:43:01.437 Detail,
2018-02-02 13:43:01.437 Info, Node003, Sending (Command) message (Callback ID=0x12, Expected Reply=0x47) - ControllerCommand_DeleteAllReturnRoutess (Node=3): 0x01, 0x05, 0x00, 0x47, 0x03, 0x12, 0xac
2018-02-02 13:43:01.444 Detail, Node003, Received: 0x01, 0x04, 0x01, 0x47, 0x01, 0xbc
2018-02-02 13:43:01.444 Detail,
2018-02-02 13:43:01.444 Info, Node003, Received reply to FUNC_ID_ZW_DELETE_RETURN_ROUTE - command in progress
2018-02-02 13:43:01.444 Detail, Notification: ControllerCommand - InProgress
2018-02-02 13:43:01.784 Detail, Node003, Received: 0x01, 0x05, 0x00, 0x47, 0x12, 0x00, 0xaf
2018-02-02 13:43:01.784 Detail,
2018-02-02 13:43:01.785 Info, Node003, Received reply to FUNC_ID_ZW_DELETE_RETURN_ROUTE for node 3 - SUCCESS
2018-02-02 13:43:01.785 Detail, Expected callbackId was received
2018-02-02 13:43:01.785 Detail, Expected reply was received
2018-02-02 13:43:01.785 Detail, Message transaction complete
2018-02-02 13:43:01.785 Detail,
2018-02-02 13:43:01.785 Detail, Node003, Removing current message
2018-02-02 13:43:01.785 Detail, Notification: ControllerCommand - Completed
2018-02-02 13:43:01.791 Info, Assigning return route from node 3 to node 1
2018-02-02 13:43:01.791 Detail, Node003, Queuing (Command) ControllerCommand_AssignReturnRoute (Node=3): 0x01, 0x06, 0x00, 0x46, 0x03, 0x01, 0x13, 0xae
2018-02-02 13:43:01.791 Detail, Notification: ControllerCommand - Starting
2018-02-02 13:43:01.792 Detail,
2018-02-02 13:43:01.792 Info, Node003, Sending (Command) message (Callback ID=0x13, Expected Reply=0x46) - ControllerCommand_AssignReturnRoute (Node=3): 0x01, 0x06, 0x00, 0x46, 0x03, 0x01, 0x13, 0xae
2018-02-02 13:43:01.804 Detail, Node003, Received: 0x01, 0x04, 0x01, 0x46, 0x01, 0xbd
2018-02-02 13:43:01.810 Detail,
2018-02-02 13:43:01.810 Info, Node003, Received reply to FUNC_ID_ZW_ASSIGN_RETURN_ROUTE - command in progress
2018-02-02 13:43:01.810 Detail, Notification: ControllerCommand - InProgress
2018-02-02 13:43:04.530 Detail, Node003, Received: 0x01, 0x05, 0x00, 0x46, 0x13, 0x00, 0xaf
2018-02-02 13:43:04.530 Detail,
2018-02-02 13:43:04.530 Info, Node003, Received reply to FUNC_ID_ZW_ASSIGN_RETURN_ROUTE for node 3 - SUCCESS
2018-02-02 13:43:04.530 Detail, Expected callbackId was received
2018-02-02 13:43:04.530 Detail, Expected reply was received
2018-02-02 13:43:04.530 Detail, Message transaction complete
2018-02-02 13:43:04.530 Detail,
2018-02-02 13:43:04.530 Detail, Node003, Removing current message
2018-02-02 13:43:04.530 Detail, Notification: ControllerCommand - Completed
2018-02-02 13:43:04.536 Info, Deleting all return routes from node 4
2018-02-02 13:43:04.536 Detail, Node004, Queuing (Command) ControllerCommand_DeleteAllReturnRoutess (Node=4): 0x01, 0x05, 0x00, 0x47, 0x04, 0x14, 0xad
2018-02-02 13:43:04.536 Detail, Notification: ControllerCommand - Starting
2018-02-02 13:43:04.541 Detail,
2018-02-02 13:43:04.541 Info, Node004, Sending (Command) message (Callback ID=0x14, Expected Reply=0x47) - ControllerCommand_DeleteAllReturnRoutess (Node=4): 0x01, 0x05, 0x00, 0x47, 0x04, 0x14, 0xad
2018-02-02 13:43:04.549 Detail, Node004, Received: 0x01, 0x04, 0x01, 0x47, 0x01, 0xbc
2018-02-02 13:43:04.549 Detail,
2018-02-02 13:43:04.549 Info, Node004, Received reply to FUNC_ID_ZW_DELETE_RETURN_ROUTE - command in progress
2018-02-02 13:43:04.549 Detail, Notification: ControllerCommand - InProgress
2018-02-02 13:43:04.664 Detail, Node004, Received: 0x01, 0x05, 0x00, 0x47, 0x14, 0x00, 0xa9
2018-02-02 13:43:04.701 Detail,
2018-02-02 13:43:04.701 Info, Node004, Received reply to FUNC_ID_ZW_DELETE_RETURN_ROUTE for node 4 - SUCCESS
2018-02-02 13:43:04.701 Detail, Expected callbackId was received
2018-02-02 13:43:04.701 Detail, Expected reply was received
2018-02-02 13:43:04.701 Detail, Message transaction complete
2018-02-02 13:43:04.701 Detail,
2018-02-02 13:43:04.701 Detail, Node004, Removing current message
2018-02-02 13:43:04.701 Detail, Notification: ControllerCommand - Completed
2018-02-02 13:43:04.702 Info, Assigning return route from node 4 to node 1
2018-02-02 13:43:04.702 Detail, Node004, Queuing (Command) ControllerCommand_AssignReturnRoute (Node=4): 0x01, 0x06, 0x00, 0x46, 0x04, 0x01, 0x15, 0xaf
2018-02-02 13:43:04.703 Detail, Notification: ControllerCommand - Starting
2018-02-02 13:43:04.704 Detail,
2018-02-02 13:43:04.714 Info, Node004, Sending (Command) message (Callback ID=0x15, Expected Reply=0x46) - ControllerCommand_AssignReturnRoute (Node=4): 0x01, 0x06, 0x00, 0x46, 0x04, 0x01, 0x15, 0xaf
2018-02-02 13:43:04.727 Detail, Node004, Received: 0x01, 0x04, 0x01, 0x46, 0x01, 0xbd
2018-02-02 13:43:04.727 Detail,
2018-02-02 13:43:04.727 Info, Node004, Received reply to FUNC_ID_ZW_ASSIGN_RETURN_ROUTE - command in progress
2018-02-02 13:43:04.727 Detail, Notification: ControllerCommand - InProgress
2018-02-02 13:43:05.533 Detail, Node004, Received: 0x01, 0x05, 0x00, 0x46, 0x15, 0x00, 0xa9
2018-02-02 13:43:05.533 Detail,
2018-02-02 13:43:05.534 Info, Node004, Received reply to FUNC_ID_ZW_ASSIGN_RETURN_ROUTE for node 4 - SUCCESS
2018-02-02 13:43:05.534 Detail, Expected callbackId was received
2018-02-02 13:43:05.534 Detail, Expected reply was received
2018-02-02 13:43:05.534 Detail, Message transaction complete
2018-02-02 13:43:05.534 Detail,
2018-02-02 13:43:05.534 Detail, Node004, Removing current message
2018-02-02 13:43:05.534 Detail, Notification: ControllerCommand - Completed
2018-02-02 13:43:05.534 Info, Deleting all return routes from node 5
2018-02-02 13:43:05.534 Detail, Node005, Queuing (Command) ControllerCommand_DeleteAllReturnRoutess (Node=5): 0x01, 0x05, 0x00, 0x47, 0x05, 0x16, 0xae
2018-02-02 13:43:05.535 Detail, Notification: ControllerCommand - Starting
2018-02-02 13:43:05.535 Detail,
2018-02-02 13:43:05.536 Info, Node005, Sending (Command) message (Callback ID=0x16, Expected Reply=0x47) - ControllerCommand_DeleteAllReturnRoutess (Node=5): 0x01, 0x05, 0x00, 0x47, 0x05, 0x16, 0xae
2018-02-02 13:43:05.542 Detail, Node005, Received: 0x01, 0x04, 0x01, 0x47, 0x01, 0xbc
2018-02-02 13:43:05.542 Detail,
2018-02-02 13:43:05.542 Info, Node005, Received reply to FUNC_ID_ZW_DELETE_RETURN_ROUTE - command in progress
2018-02-02 13:43:05.543 Detail, Notification: ControllerCommand - InProgress
2018-02-02 13:43:06.150 Detail, Node005, Received: 0x01, 0x05, 0x00, 0x47, 0x16, 0x00, 0xab
2018-02-02 13:43:06.150 Detail,
2018-02-02 13:43:06.150 Info, Node005, Received reply to FUNC_ID_ZW_DELETE_RETURN_ROUTE for node 5 - SUCCESS
2018-02-02 13:43:06.150 Detail, Expected callbackId was received
2018-02-02 13:43:06.150 Detail, Expected reply was received
2018-02-02 13:43:06.151 Detail, Message transaction complete
2018-02-02 13:43:06.151 Detail,
2018-02-02 13:43:06.151 Detail, Node005, Removing current message
2018-02-02 13:43:06.151 Detail, Notification: ControllerCommand - Completed
2018-02-02 13:43:06.154 Info, Assigning return route from node 5 to node 1
2018-02-02 13:43:06.154 Detail, Node005, Queuing (Command) ControllerCommand_AssignReturnRoute (Node=5): 0x01, 0x06, 0x00, 0x46, 0x05, 0x01, 0x17, 0xac
2018-02-02 13:43:06.155 Detail, Notification: ControllerCommand - Starting
2018-02-02 13:43:06.155 Detail,
2018-02-02 13:43:06.155 Info, Node005, Sending (Command) message (Callback ID=0x17, Expected Reply=0x46) - ControllerCommand_AssignReturnRoute (Node=5): 0x01, 0x06, 0x00, 0x46, 0x05, 0x01, 0x17, 0xac
2018-02-02 13:43:06.338 Detail, Node005, Received: 0x01, 0x04, 0x01, 0x46, 0x01, 0xbd
2018-02-02 13:43:06.338 Detail,
2018-02-02 13:43:06.338 Info, Node005, Received reply to FUNC_ID_ZW_ASSIGN_RETURN_ROUTE - command in progress
2018-02-02 13:43:06.338 Detail, Notification: ControllerCommand - InProgress
2018-02-02 13:43:07.200 Detail, Node005, Received: 0x01, 0x05, 0x00, 0x46, 0x17, 0x00, 0xab
2018-02-02 13:43:07.200 Detail,
2018-02-02 13:43:07.200 Info, Node005, Received reply to FUNC_ID_ZW_ASSIGN_RETURN_ROUTE for node 5 - SUCCESS
2018-02-02 13:43:07.200 Detail, Expected callbackId was received
2018-02-02 13:43:07.200 Detail, Expected reply was received
2018-02-02 13:43:07.200 Detail, Message transaction complete
2018-02-02 13:43:07.200 Detail,
2018-02-02 13:43:07.200 Detail, Node005, Removing current message
2018-02-02 13:43:07.200 Detail, Notification: ControllerCommand - Completed
2018-02-02 13:43:07.201 Info, Deleting all return routes from node 6
2018-02-02 13:43:07.201 Detail, Node006, Queuing (Command) ControllerCommand_DeleteAllReturnRoutess (Node=6): 0x01, 0x05, 0x00, 0x47, 0x06, 0x18, 0xa3
2018-02-02 13:43:07.201 Detail, Notification: ControllerCommand - Starting
2018-02-02 13:43:07.202 Detail,
2018-02-02 13:43:07.202 Info, Node006, Sending (Command) message (Callback ID=0x18, Expected Reply=0x47) - ControllerCommand_DeleteAllReturnRoutess (Node=6): 0x01, 0x05, 0x00, 0x47, 0x06, 0x18, 0xa3
2018-02-02 13:43:07.210 Detail, Node006, Received: 0x01, 0x04, 0x01, 0x47, 0x01, 0xbc
2018-02-02 13:43:07.210 Detail,
2018-02-02 13:43:07.210 Info, Node006, Received reply to FUNC_ID_ZW_DELETE_RETURN_ROUTE - command in progress
2018-02-02 13:43:07.210 Detail, Notification: ControllerCommand - InProgress
2018-02-02 13:43:07.992 Detail, Node006, Received: 0x01, 0x05, 0x00, 0x47, 0x18, 0x00, 0xa5
2018-02-02 13:43:07.993 Detail,
2018-02-02 13:43:07.993 Info, Node006, Received reply to FUNC_ID_ZW_DELETE_RETURN_ROUTE for node 6 - SUCCESS
2018-02-02 13:43:07.993 Detail, Expected callbackId was received
2018-02-02 13:43:07.993 Detail, Expected reply was received
2018-02-02 13:43:07.993 Detail, Message transaction complete
2018-02-02 13:43:07.993 Detail,
2018-02-02 13:43:07.993 Detail, Node006, Removing current message
2018-02-02 13:43:07.993 Detail, Notification: ControllerCommand - Completed
2018-02-02 13:43:07.994 Info, Assigning return route from node 6 to node 1
2018-02-02 13:43:07.994 Detail, Node006, Queuing (Command) ControllerCommand_AssignReturnRoute (Node=6): 0x01, 0x06, 0x00, 0x46, 0x06, 0x01, 0x19, 0xa1
2018-02-02 13:43:07.994 Detail, Notification: ControllerCommand - Starting
2018-02-02 13:43:07.995 Detail,
2018-02-02 13:43:07.995 Info, Node006, Sending (Command) message (Callback ID=0x19, Expected Reply=0x46) - ControllerCommand_AssignReturnRoute (Node=6): 0x01, 0x06, 0x00, 0x46, 0x06, 0x01, 0x19, 0xa1
2018-02-02 13:43:08.175 Detail, Node006, Received: 0x01, 0x04, 0x01, 0x46, 0x01, 0xbd
2018-02-02 13:43:08.175 Detail,
2018-02-02 13:43:08.176 Info, Node006, Received reply to FUNC_ID_ZW_ASSIGN_RETURN_ROUTE - command in progress
2018-02-02 13:43:08.176 Detail, Notification: ControllerCommand - InProgress
2018-02-02 13:43:09.561 Detail, Node006, Received: 0x01, 0x05, 0x00, 0x46, 0x19, 0x00, 0xa5
2018-02-02 13:43:09.561 Detail,
2018-02-02 13:43:09.561 Info, Node006, Received reply to FUNC_ID_ZW_ASSIGN_RETURN_ROUTE for node 6 - SUCCESS
2018-02-02 13:43:09.561 Detail, Expected callbackId was received
2018-02-02 13:43:09.561 Detail, Expected reply was received
2018-02-02 13:43:09.561 Detail, Message transaction complete
2018-02-02 13:43:09.561 Detail,
2018-02-02 13:43:09.561 Detail, Node006, Removing current message
2018-02-02 13:43:09.561 Detail, Notification: ControllerCommand - Completed
2018-02-02 13:43:09.562 Info, Deleting all return routes from node 8
2018-02-02 13:43:09.562 Detail, Node008, Queuing (Command) ControllerCommand_DeleteAllReturnRoutess (Node=8): 0x01, 0x05, 0x00, 0x47, 0x08, 0x1a, 0xaf
2018-02-02 13:43:09.562 Detail, Notification: ControllerCommand - Starting
2018-02-02 13:43:09.564 Detail,
2018-02-02 13:43:09.564 Info, Node008, Sending (Command) message (Callback ID=0x1a, Expected Reply=0x47) - ControllerCommand_DeleteAllReturnRoutess (Node=8): 0x01, 0x05, 0x00, 0x47, 0x08, 0x1a, 0xaf
2018-02-02 13:43:09.571 Detail, Node008, Received: 0x01, 0x04, 0x01, 0x47, 0x01, 0xbc
2018-02-02 13:43:09.571 Detail,
2018-02-02 13:43:09.571 Info, Node008, Received reply to FUNC_ID_ZW_DELETE_RETURN_ROUTE - command in progress
2018-02-02 13:43:09.571 Detail, Notification: ControllerCommand - InProgress
2018-02-02 13:43:09.730 Detail, Node008, Received: 0x01, 0x05, 0x00, 0x47, 0x1a, 0x00, 0xa7
2018-02-02 13:43:09.730 Detail,
2018-02-02 13:43:09.730 Info, Node008, Received reply to FUNC_ID_ZW_DELETE_RETURN_ROUTE for node 8 - SUCCESS
2018-02-02 13:43:09.730 Detail, Expected callbackId was received
2018-02-02 13:43:09.730 Detail, Expected reply was received
2018-02-02 13:43:09.730 Detail, Message transaction complete
2018-02-02 13:43:09.730 Detail,
2018-02-02 13:43:09.730 Detail, Node008, Removing current message
2018-02-02 13:43:09.731 Detail, Notification: ControllerCommand - Completed
2018-02-02 13:43:09.732 Info, Assigning return route from node 8 to node 1
2018-02-02 13:43:09.732 Detail, Node008, Queuing (Command) ControllerCommand_AssignReturnRoute (Node=8): 0x01, 0x06, 0x00, 0x46, 0x08, 0x01, 0x1b, 0xad
2018-02-02 13:43:09.732 Detail, Notification: ControllerCommand - Starting
2018-02-02 13:43:09.733 Detail,
2018-02-02 13:43:09.733 Info, Node008, Sending (Command) message (Callback ID=0x1b, Expected Reply=0x46) - ControllerCommand_AssignReturnRoute (Node=8): 0x01, 0x06, 0x00, 0x46, 0x08, 0x01, 0x1b, 0xad
2018-02-02 13:43:09.746 Detail, Node008, Received: 0x01, 0x04, 0x01, 0x46, 0x01, 0xbd
2018-02-02 13:43:09.753 Detail,
2018-02-02 13:43:09.753 Info, Node008, Received reply to FUNC_ID_ZW_ASSIGN_RETURN_ROUTE - command in progress
2018-02-02 13:43:09.753 Detail, Notification: ControllerCommand - InProgress
2018-02-02 13:43:14.173 Detail, Node008, Received: 0x01, 0x05, 0x00, 0x46, 0x1b, 0x00, 0xa7
2018-02-02 13:43:14.173 Detail,
2018-02-02 13:43:14.174 Info, Node008, Received reply to FUNC_ID_ZW_ASSIGN_RETURN_ROUTE for node 8 - SUCCESS
2018-02-02 13:43:14.174 Detail, Expected callbackId was received
2018-02-02 13:43:14.174 Detail, Expected reply was received
2018-02-02 13:43:14.174 Detail, Message transaction complete
2018-02-02 13:43:14.174 Detail,
2018-02-02 13:43:14.174 Detail, Node008, Removing current message
2018-02-02 13:43:14.174 Detail, Notification: ControllerCommand - Completed
2018-02-02 13:43:14.174 Info, Deleting all return routes from node 9
2018-02-02 13:43:14.175 Detail, Node009, Queuing (Command) ControllerCommand_DeleteAllReturnRoutess (Node=9): 0x01, 0x05, 0x00, 0x47, 0x09, 0x1c, 0xa8
2018-02-02 13:43:14.175 Detail, Notification: ControllerCommand - Starting
2018-02-02 13:43:14.175 Detail,
2018-02-02 13:43:14.175 Info, Node009, Sending (Command) message (Callback ID=0x1c, Expected Reply=0x47) - ControllerCommand_DeleteAllReturnRoutess (Node=9): 0x01, 0x05, 0x00, 0x47, 0x09, 0x1c, 0xa8
2018-02-02 13:43:14.182 Detail, Node009, Received: 0x01, 0x04, 0x01, 0x47, 0x01, 0xbc
2018-02-02 13:43:14.182 Detail,
2018-02-02 13:43:14.182 Info, Node009, Received reply to FUNC_ID_ZW_DELETE_RETURN_ROUTE - command in progress
2018-02-02 13:43:14.183 Detail, Notification: ControllerCommand - InProgress
2018-02-02 13:43:14.521 Detail, Node009, Received: 0x01, 0x05, 0x00, 0x47, 0x1c, 0x00, 0xa1
2018-02-02 13:43:14.521 Detail,
2018-02-02 13:43:14.521 Info, Node009, Received reply to FUNC_ID_ZW_DELETE_RETURN_ROUTE for node 9 - SUCCESS
2018-02-02 13:43:14.521 Detail, Expected callbackId was received
2018-02-02 13:43:14.521 Detail, Expected reply was received
2018-02-02 13:43:14.522 Detail, Message transaction complete
2018-02-02 13:43:14.522 Detail,
2018-02-02 13:43:14.522 Detail, Node009, Removing current message
2018-02-02 13:43:14.522 Detail, Notification: ControllerCommand - Completed
2018-02-02 13:43:14.522 Info, Assigning return route from node 9 to node 1
2018-02-02 13:43:14.522 Detail, Node009, Queuing (Command) ControllerCommand_AssignReturnRoute (Node=9): 0x01, 0x06, 0x00, 0x46, 0x09, 0x01, 0x1d, 0xaa
2018-02-02 13:43:14.522 Detail, Notification: ControllerCommand - Starting
2018-02-02 13:43:14.523 Detail,
2018-02-02 13:43:14.523 Info, Node009, Sending (Command) message (Callback ID=0x1d, Expected Reply=0x46) - ControllerCommand_AssignReturnRoute (Node=9): 0x01, 0x06, 0x00, 0x46, 0x09, 0x01, 0x1d, 0xaa
2018-02-02 13:43:14.535 Detail, Node009, Received: 0x01, 0x04, 0x01, 0x46, 0x01, 0xbd
2018-02-02 13:43:14.535 Detail,
2018-02-02 13:43:14.535 Info, Node009, Received reply to FUNC_ID_ZW_ASSIGN_RETURN_ROUTE - command in progress
2018-02-02 13:43:14.535 Detail, Notification: ControllerCommand - InProgress
2018-02-02 13:43:15.362 Detail, Node009, Received: 0x01, 0x05, 0x00, 0x46, 0x1d, 0x00, 0xa1
2018-02-02 13:43:15.362 Detail,
2018-02-02 13:43:15.362 Info, Node009, Received reply to FUNC_ID_ZW_ASSIGN_RETURN_ROUTE for node 9 - SUCCESS
2018-02-02 13:43:15.362 Detail, Expected callbackId was received
2018-02-02 13:43:15.362 Detail, Expected reply was received
2018-02-02 13:43:15.363 Detail, Message transaction complete
2018-02-02 13:43:15.363 Detail,
2018-02-02 13:43:15.363 Detail, Node009, Removing current message
2018-02-02 13:43:15.363 Detail, Notification: ControllerCommand - Completed
2018-02-02 13:43:15.364 Detail, Node001, Query Stage Complete (Neighbors)
2018-02-02 13:43:15.364 Detail, Node001, AdvanceQueries queryPending=0 queryRetries=0 queryStage=Session live=1
2018-02-02 13:43:15.364 Detail, Node001, QueryStage_Session
2018-02-02 13:43:15.364 Detail, Node001, QueryStage_Dynamic
2018-02-02 13:43:15.364 Detail, Node001, QueryStage_Configuration
2018-02-02 13:43:15.364 Detail, Node001, QueryStage_Complete
2018-02-02 13:43:15.364 Warning, CheckCompletedNodeQueries m_allNodesQueried=0 m_awakeNodesQueried=0
2018-02-02 13:43:15.364 Warning, CheckCompletedNodeQueries all=0, deadFound=0 sleepingOnly=0
2018-02-02 13:43:15.365 Detail, Node001, Notification: NodeQueriesComplete
2018-02-02 13:43:15.369 Detail, Node003, Query Stage Complete (CacheLoad)
2018-02-02 13:43:15.369 Detail, Node003, AdvanceQueries queryPending=0 queryRetries=0 queryStage=Associations live=1
2018-02-02 13:43:15.369 Detail, Node003, QueryStage_Associations
2018-02-02 13:43:15.369 Info, Node003, Number of association groups reported for node 3 is 3.
2018-02-02 13:43:15.369 Info, Node003, Get MultiChannelAssociation for group 1 of node 3
2018-02-02 13:43:15.370 Detail, Node003, Queuing (Send) MultiChannelAssociationCmd_Get (Node=3): 0x01, 0x0a, 0x00, 0x13, 0x03, 0x03, 0x8e, 0x02, 0x01, 0x25, 0x1e, 0x50
2018-02-02 13:43:15.378 Detail, Node003, Queuing (Query) Query Stage Complete (Associations)
2018-02-02 13:43:15.378 Detail,
2018-02-02 13:43:15.378 Info, Node003, Sending (Send) message (Callback ID=0x1e, Expected Reply=0x04) - MultiChannelAssociationCmd_Get (Node=3): 0x01, 0x0a, 0x00, 0x13, 0x03, 0x03, 0x8e, 0x02, 0x01, 0x25, 0x1e, 0x50
2018-02-02 13:43:15.386 Detail, Node003, Received: 0x01, 0x04, 0x01, 0x13, 0x01, 0xe8
2018-02-02 13:43:15.386 Detail, Node003, ZW_SEND_DATA delivered to Z-Wave stack
2018-02-02 13:43:15.402 Detail, Node003, Received: 0x01, 0x07, 0x00, 0x13, 0x1e, 0x00, 0x00, 0x02, 0xf7
2018-02-02 13:43:15.403 Detail, Node003, ZW_SEND_DATA Request with callback ID 0x1e received (expected 0x1e)
2018-02-02 13:43:15.403 Info, Node003, Request RTT 24 Average Request RTT 46
2018-02-02 13:43:15.403 Detail, Expected callbackId was received
2018-02-02 13:43:15.414 Detail, Node003, Received: 0x01, 0x0c, 0x00, 0x04, 0x00, 0x03, 0x06, 0x8e, 0x03, 0x01, 0x01, 0x00, 0x01, 0x7e
2018-02-02 13:43:15.414 Detail,
2018-02-02 13:43:15.414 Info, Node003, Response RTT 35 Average Response RTT 35
2018-02-02 13:43:15.414 Info, Node003, Received Multi Instance Association report from node 3, group 1
2018-02-02 13:43:15.414 Info, Node003, The group contains:
2018-02-02 13:43:15.414 Info, Node003, Node 1
2018-02-02 13:43:15.414 Info, Node003, Get MultiChannelAssociation for group 2 of node 3
2018-02-02 13:43:15.415 Detail, Node003, Queuing (Send) MultiChannelAssociationCmd_Get (Node=3): 0x01, 0x0a, 0x00, 0x13, 0x03, 0x03, 0x8e, 0x02, 0x02, 0x25, 0x1f, 0x52
2018-02-02 13:43:15.415 Detail, Node003, Expected reply and command class was received
2018-02-02 13:43:15.415 Detail, Node003, Message transaction complete
2018-02-02 13:43:15.415 Detail,
2018-02-02 13:43:15.415 Detail, Node003, Removing current message
2018-02-02 13:43:15.415 Detail,
2018-02-02 13:43:15.415 Info, Node003, Sending (Send) message (Callback ID=0x1f, Expected Reply=0x04) - MultiChannelAssociationCmd_Get (Node=3): 0x01, 0x0a, 0x00, 0x13, 0x03, 0x03, 0x8e, 0x02, 0x02, 0x25, 0x1f, 0x52
2018-02-02 13:43:15.424 Detail, Node003, Received: 0x01, 0x04, 0x01, 0x13, 0x01, 0xe8
2018-02-02 13:43:15.424 Detail, Node003, ZW_SEND_DATA delivered to Z-Wave stack
2018-02-02 13:43:15.439 Detail, Node003, Received: 0x01, 0x07, 0x00, 0x13, 0x1f, 0x00, 0x00, 0x03, 0xf7
2018-02-02 13:43:15.440 Detail, Node003, ZW_SEND_DATA Request with callback ID 0x1f received (expected 0x1f)
2018-02-02 13:43:15.440 Info, Node003, Request RTT 24 Average Request RTT 35
2018-02-02 13:43:15.440 Detail, Expected callbackId was received
2018-02-02 13:43:15.451 Detail, Node003, Received: 0x01, 0x0b, 0x00, 0x04, 0x00, 0x03, 0x05, 0x8e, 0x03, 0x02, 0x0a, 0x00, 0x73
2018-02-02 13:43:15.451 Detail,
2018-02-02 13:43:15.451 Info, Node003, Response RTT 36 Average Response RTT 35
2018-02-02 13:43:15.451 Info, Node003, Received Multi Instance Association report from node 3, group 2
2018-02-02 13:43:15.452 Info, Node003, The group contains:
2018-02-02 13:43:15.452 Info, Node003, Get MultiChannelAssociation for group 3 of node 3
2018-02-02 13:43:15.452 Detail, Node003, Queuing (Send) MultiChannelAssociationCmd_Get (Node=3): 0x01, 0x0a, 0x00, 0x13, 0x03, 0x03, 0x8e, 0x02, 0x03, 0x25, 0x20, 0x6c
2018-02-02 13:43:15.452 Detail, Node003, Expected reply and command class was received
2018-02-02 13:43:15.452 Detail, Node003, Message transaction complete
2018-02-02 13:43:15.452 Detail,
2018-02-02 13:43:15.452 Detail, Node003, Removing current message
2018-02-02 13:43:15.452 Detail, Node003, Notification: Group
2018-02-02 13:43:15.453 Detail,
2018-02-02 13:43:15.453 Info, Node003, Sending (Send) message (Callback ID=0x20, Expected Reply=0x04) - MultiChannelAssociationCmd_Get (Node=3): 0x01, 0x0a, 0x00, 0x13, 0x03, 0x03, 0x8e, 0x02, 0x03, 0x25, 0x20, 0x6c
2018-02-02 13:43:15.462 Detail, Node003, Received: 0x01, 0x04, 0x01, 0x13, 0x01, 0xe8
2018-02-02 13:43:15.462 Detail, Node003, ZW_SEND_DATA delivered to Z-Wave stack
2018-02-02 13:43:15.478 Detail, Node003, Received: 0x01, 0x07, 0x00, 0x13, 0x20, 0x00, 0x00, 0x02, 0xc9
2018-02-02 13:43:15.479 Detail, Node003, ZW_SEND_DATA Request with callback ID 0x20 received (expected 0x20)
2018-02-02 13:43:15.479 Info, Node003, Request RTT 25 Average Request RTT 30
2018-02-02 13:43:15.479 Detail, Expected callbackId was received
2018-02-02 13:43:15.490 Detail, Node003, Received: 0x01, 0x0b, 0x00, 0x04, 0x00, 0x03, 0x05, 0x8e, 0x03, 0x03, 0x0a, 0x00, 0x72
2018-02-02 13:43:15.490 Detail,
2018-02-02 13:43:15.490 Info, Node003, Response RTT 36 Average Response RTT 35
2018-02-02 13:43:15.490 Info, Node003, Received Multi Instance Association report from node 3, group 3
2018-02-02 13:43:15.491 Info, Node003, The group contains:
2018-02-02 13:43:15.491 Info, Node003, Querying associations for node 3 is complete.
2018-02-02 13:43:15.491 Detail, Node003, Expected reply and command class was received
2018-02-02 13:43:15.491 Detail, Node003, Message transaction complete
2018-02-02 13:43:15.491 Detail,
2018-02-02 13:43:15.492 Detail, Node003, Removing current message
2018-02-02 13:43:15.492 Detail, Node003, Notification: Group
2018-02-02 13:43:15.493 Detail, Node004, Query Stage Complete (CacheLoad)
2018-02-02 13:43:15.493 Detail, Node004, AdvanceQueries queryPending=0 queryRetries=0 queryStage=Associations live=1
2018-02-02 13:43:15.513 Detail, Node004, QueryStage_Associations
2018-02-02 13:43:15.513 Info, Node004, Number of association groups reported for node 4 is 3.
2018-02-02 13:43:15.513 Info, Node004, Get MultiChannelAssociation for group 1 of node 4
2018-02-02 13:43:15.513 Detail, Node004, Queuing (Send) MultiChannelAssociationCmd_Get (Node=4): 0x01, 0x0a, 0x00, 0x13, 0x04, 0x03, 0x8e, 0x02, 0x01, 0x25, 0x21, 0x68
2018-02-02 13:43:15.514 Detail, Node004, Queuing (Query) Query Stage Complete (Associations)
2018-02-02 13:43:15.514 Detail,
2018-02-02 13:43:15.514 Info, Node004, Sending (Send) message (Callback ID=0x21, Expected Reply=0x04) - MultiChannelAssociationCmd_Get (Node=4): 0x01, 0x0a, 0x00, 0x13, 0x04, 0x03, 0x8e, 0x02, 0x01, 0x25, 0x21, 0x68
2018-02-02 13:43:15.524 Detail, Node004, Received: 0x01, 0x04, 0x01, 0x13, 0x01, 0xe8
2018-02-02 13:43:15.524 Detail, Node004, ZW_SEND_DATA delivered to Z-Wave stack
2018-02-02 13:43:15.539 Detail, Node004, Received: 0x01, 0x07, 0x00, 0x13, 0x21, 0x00, 0x00, 0x02, 0xc8
2018-02-02 13:43:15.539 Detail, Node004, ZW_SEND_DATA Request with callback ID 0x21 received (expected 0x21)
2018-02-02 13:43:15.539 Info, Node004, Request RTT 24 Average Request RTT 24
2018-02-02 13:43:15.539 Detail, Expected callbackId was received
2018-02-02 13:43:15.550 Detail, Node004, Received: 0x01, 0x0c, 0x00, 0x04, 0x00, 0x04, 0x06, 0x8e, 0x03, 0x01, 0x01, 0x00, 0x01, 0x79
2018-02-02 13:43:15.551 Detail,
2018-02-02 13:43:15.551 Info, Node004, Response RTT 36 Average Response RTT 36
2018-02-02 13:43:15.551 Info, Node004, Received Multi Instance Association report from node 4, group 1
2018-02-02 13:43:15.551 Info, Node004, The group contains:
2018-02-02 13:43:15.551 Info, Node004, Node 1
2018-02-02 13:43:15.552 Info, Node004, Get MultiChannelAssociation for group 2 of node 4
2018-02-02 13:43:15.552 Detail, Node004, Queuing (Send) MultiChannelAssociationCmd_Get (Node=4): 0x01, 0x0a, 0x00, 0x13, 0x04, 0x03, 0x8e, 0x02, 0x02, 0x25, 0x22, 0x68
2018-02-02 13:43:15.552 Detail, Node004, Expected reply and command class was received
2018-02-02 13:43:15.552 Detail, Node004, Message transaction complete
2018-02-02 13:43:15.552 Detail,
2018-02-02 13:43:15.552 Detail, Node004, Removing current message
2018-02-02 13:43:15.553 Detail,
2018-02-02 13:43:15.553 Info, Node004, Sending (Send) message (Callback ID=0x22, Expected Reply=0x04) - MultiChannelAssociationCmd_Get (Node=4): 0x01, 0x0a, 0x00, 0x13, 0x04, 0x03, 0x8e, 0x02, 0x02, 0x25, 0x22, 0x68
2018-02-02 13:43:15.562 Detail, Node004, Received: 0x01, 0x04, 0x01, 0x13, 0x01, 0xe8
2018-02-02 13:43:15.562 Detail, Node004, ZW_SEND_DATA delivered to Z-Wave stack
2018-02-02 13:43:15.578 Detail, Node004, Received: 0x01, 0x07, 0x00, 0x13, 0x22, 0x00, 0x00, 0x02, 0xcb
2018-02-02 13:43:15.578 Detail, Node004, ZW_SEND_DATA Request with callback ID 0x22 received (expected 0x22)
2018-02-02 13:43:15.579 Info, Node004, Request RTT 25 Average Request RTT 24
2018-02-02 13:43:15.579 Detail, Expected callbackId was received
2018-02-02 13:43:15.590 Detail, Node004, Received: 0x01, 0x0b, 0x00, 0x04, 0x00, 0x04, 0x05, 0x8e, 0x03, 0x02, 0x0a, 0x00, 0x74
2018-02-02 13:43:15.590 Detail,
2018-02-02 13:43:15.590 Info, Node004, Response RTT 36 Average Response RTT 36
2018-02-02 13:43:15.590 Info, Node004, Received Multi Instance Association report from node 4, group 2
2018-02-02 13:43:15.590 Info, Node004, The group contains:
2018-02-02 13:43:15.591 Info, Node004, Get MultiChannelAssociation for group 3 of node 4
2018-02-02 13:43:15.591 Detail, Node004, Queuing (Send) MultiChannelAssociationCmd_Get (Node=4): 0x01, 0x0a, 0x00, 0x13, 0x04, 0x03, 0x8e, 0x02, 0x03, 0x25, 0x23, 0x68
2018-02-02 13:43:15.591 Detail, Node004, Expected reply and command class was received
2018-02-02 13:43:15.591 Detail, Node004, Message transaction complete
2018-02-02 13:43:15.592 Detail,
2018-02-02 13:43:15.592 Detail, Node004, Removing current message
2018-02-02 13:43:15.592 Detail, Node004, Notification: Group
2018-02-02 13:43:15.593 Detail,
2018-02-02 13:43:15.593 Info, Node004, Sending (Send) message (Callback ID=0x23, Expected Reply=0x04) - MultiChannelAssociationCmd_Get (Node=4): 0x01, 0x0a, 0x00, 0x13, 0x04, 0x03, 0x8e, 0x02, 0x03, 0x25, 0x23, 0x68
2018-02-02 13:43:15.601 Detail, Node004, Received: 0x01, 0x04, 0x01, 0x13, 0x01, 0xe8
2018-02-02 13:43:15.601 Detail, Node004, ZW_SEND_DATA delivered to Z-Wave stack
2018-02-02 13:43:15.618 Detail, Node004, Received: 0x01, 0x07, 0x00, 0x13, 0x23, 0x00, 0x00, 0x02, 0xca
2018-02-02 13:43:15.618 Detail, Node004, ZW_SEND_DATA Request with callback ID 0x23 received (expected 0x23)
2018-02-02 13:43:15.618 Info, Node004, Request RTT 25 Average Request RTT 24
2018-02-02 13:43:15.619 Detail, Expected callbackId was received
2018-02-02 13:43:15.629 Detail, Node004, Received: 0x01, 0x0b, 0x00, 0x04, 0x00, 0x04, 0x05, 0x8e, 0x03, 0x03, 0x0a, 0x00, 0x75
2018-02-02 13:43:15.630 Detail,
2018-02-02 13:43:15.630 Info, Node004, Response RTT 36 Average Response RTT 36
2018-02-02 13:43:15.630 Info, Node004, Received Multi Instance Association report from node 4, group 3
2018-02-02 13:43:15.634 Info, Node004, The group contains:
2018-02-02 13:43:15.634 Info, Node004, Querying associations for node 4 is complete.
2018-02-02 13:43:15.634 Detail, Node004, Expected reply and command class was received
2018-02-02 13:43:15.634 Detail, Node004, Message transaction complete
2018-02-02 13:43:15.635 Detail,
2018-02-02 13:43:15.635 Detail, Node004, Removing current message