-
Notifications
You must be signed in to change notification settings - Fork 7
/
simplescanner.xml
1066 lines (1066 loc) · 34.7 KB
/
simplescanner.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<simplescanner>
<scan id="1">
<regex>.*CAN received...triggering resend</regex>
<type>Info</type>
<message>This indicates that a Message Collision happened on the
Z-Wave network and the message will be reattempted. If you get lots
of these messages it indicates a RF Interference Issues
</message>
<moreinfo>RFIssues</moreinfo>
</scan>
<scan id="2">
<regex>.*ERROR: Dropping command because node is presumed dead</regex>
<type>Error</type>
<message>A Message sent to ${node} was dropped as the Controller has
assumed the node is Dead
</message>
<moreinfo>DeadNode</moreinfo>
</scan>
<scan id="3">
<regex>.*ERROR: Dropping command, expected response not received after
(\d*) attempt(s)
</regex>
<type>Error</type>
<message>A Message sent to ${node} was dropped as we retried to send
the message ${1} time(s) but it did not respond
</message>
<moreinfo>MsgDropped</moreinfo>
</scan>
<scan id="4">
<regex>.*ERROR: .* could not be delivered to Z-Wave stack</regex>
<type>Error</type>
<message>A Message sent to ${node} was dropped as the Controller
rejected it. Please report to Developers
</message>
<moreinfo>SendError</moreinfo>
</scan>
<scan id="5">
<regex>.*IsPolled setting for valueId (.*) is not consistent with the
poll list
</regex>
<type>Error</type>
<message>There is a Internal Corruption on the Polling Structures.
Please report to Developers
</message>
<moreinfo>InternalError</moreinfo>
</scan>
<scan id="6">
<regex>.*Options have not been created and locked. Exiting...</regex>
<type>Error</type>
<message>The Options have not been setup before starting the Driver.
This is a Application Implementation Error. Please report to the
Application Developers
</message>
<moreinfo>AppError</moreinfo>
</scan>
<scan id="7">
<regex>.*mgr, Manager::GetDriver failed - Home ID (.*) is unknown
</regex>
<type>Error</type>
<message>The Application has requested a homeid of ${1} which is not
valid. This is a Application Implementation Error. Please report to
the Application Developers
</message>
<moreinfo>AppError</moreinfo>
</scan>
<scan id="8">
<regex>.*mgr, SetPollIntensity failed - Driver with Home ID (.*) is
not available
</regex>
<type>Error</type>
<message>The Application has requested a homeid of ${1} which is not
valid. This is a Application Implementation Error. Please report to
the Application Developers
</message>
<moreinfo>AppError</moreinfo>
</scan>
<scan id="9">
<regex>.*WARNING: node revived</regex>
<type>Warning</type>
<message>The Node ${node} has returned after the Controller assumed it
was Dead.
</message>
<moreinfo>DeadNode</moreinfo>
</scan>
<scan id="10">
<regex>.*ERROR: node presumed dead</regex>
<type>Error</type>
<message>A Message sent to ${node} was dropped as the Controller has
assumed the node is Dead
</message>
<moreinfo>DeadNode</moreinfo>
</scan>
<scan id="11">
<regex>.*Cannot find a path to the configuration files at (.*), Using
(.*) instead...
</regex>
<type>Info</type>
<message>A attempt to Open the Config files at ${1} failed. Not a
critical error as the Library will try different paths before
Erroring Out (Next Path : ${2})
</message>
<moreinfo>ConfigError</moreinfo>
</scan>
<scan id="12">
<regex>.*Cannot find a path to the configuration files at .*\.
Exiting...
</regex>
<type>Error</type>
<message>The Library could not open any Config files and tried
different locations. Please check the location of your config files.
</message>
<moreinfo>ConfigError</moreinfo>
</scan>
<scan id="13">
<regex>.*Options are already final (locked)\.</regex>
<type>Error</type>
<message>The Application has attempted to Modify the Options after
starting the Driver. This is a Application Implementation Error.
Please report to the Application Developers
</message>
<moreinfo>AppError</moreinfo>
</scan>
<scan id="14">
<regex>.*Options have been locked. No more may be added\.</regex>
<type>Error</type>
<message>The Application has attempted to Modify the Options after
starting the Driver. This is a Application Implementation Error.
Please report to the Application Developers
</message>
<moreinfo>AppError</moreinfo>
</scan>
<scan id="15">
<regex>.*Recieved a Unsolicited MultiChannelEncap when we are not in
QueryState_Instances
</regex>
<type>Warning</type>
<message>The Node {node} has Sent a Unsolicited Message. Please report
to the Developers
</message>
<moreinfo>DeviceConfigError</moreinfo>
</scan>
<scan id="16">
<regex>.*ERROR: Cannot open serial port (.*)\. Error code (.*)</regex>
<type>Error</type>
<message>The Library was unable to open the Serial Port ${1}. The
Error Was ${2}. Please check you have specified the correct serial
port
</message>
<moreinfo>AppError</moreinfo>
</scan>
<scan id="17">
<regex>.*Cannot find endpoint map to instance for Command Class .*
endpoint .*
</regex>
<type>Error</type>
<message>A Internal Error in the Library occurred. Please report to
the
Developers
</message>
<moreinfo>DeviceConfigError</moreinfo>
</scan>
<scan id="18">
<regex>.*Recieved a MultiChannelEncap for endpoint .* for Command
Class .*, which we can't find
</regex>
<type>Error</type>
<message>A Internal Error in the Library occurred. Please report to
the
Developers
</message>
<moreinfo>DeviceConfigError</moreinfo>
</scan>
<scan id="19">
<regex>.*ERROR: Cannot get exclusive lock for serial port (.*)\. Error
code (.*)
</regex>
<type>Error</type>
<message>The Serial Port ${1} is possibly being used by another
Application. The Error Was ${2}. Please check you have specified the
correct serial port and no other applications are running
</message>
<moreinfo>AppError</moreinfo>
</scan>
<scan id="20">
<regex>.*ERROR: Parity not supported</regex>
<type>Error</type>
<message>The Serial Port does not support Parity. Please report to the
developers
</message>
<moreinfo>OSError</moreinfo>
</scan>
<scan id="21">
<regex>.*ERROR: Stopbits not supported</regex>
<type>Error</type>
<message>The Serial Port does not support Parity. Please report to the
developers
</message>
<moreinfo>OSError</moreinfo>
</scan>
<scan id="22">
<regex>.*Baud rate not supported</regex>
<type>Error</type>
<message>The Serial Port does not the requested speed. Please report
to the developers
</message>
<moreinfo>OSError</moreinfo>
</scan>
<scan id="23">
<regex>.*ERROR: Failed to set serial port parameters</regex>
<type>Error</type>
<message>The Serial Port does not the requested speed. Please report
to the developers
</message>
<moreinfo>OSError</moreinfo>
</scan>
<scan id="24">
<regex>.*ERROR: Failed to open serial port (.*)</regex>
<type>Error</type>
<message>The Library was unable to open the Serial Port ${1}. Please
check you have specified the correct serial port
</message>
<moreinfo>AppError</moreinfo>
</scan>
<scan id="25">
<regex>.*ERROR: Serial port must be opened before writing</regex>
<type>Error</type>
<message>A Internal Error Occurred. Please report to the Developers
</message>
<moreinfo>InternalError</moreinfo>
</scan>
<scan id="26">
<regex>.*Cannot find specified HID port with VID:(.*) and PID:(.*)\.
</regex>
<type>Error</type>
<message>The Library was unable to find the USB Device with VID = ${1}
and PID = ${2}. Please check you have specified the correct USB
Device ID's
</message>
<moreinfo>AppError</moreinfo>
</scan>
<scan id="27">
<regex>.*Failed to open HID port (.*)</regex>
<type>Error</type>
<message>The Library was unable to open the USB Device ${1}. Please
check you have specified the correct USB Device ID's
</message>
<moreinfo>AppError</moreinfo>
</scan>
<scan id="28">
<regex>.*HIDAPI ERROR STRING (if any): (.*)</regex>
<type>Error</type>
<message>The USB Device reported a Error: ${1} Please report to the
Developers
</message>
<moreinfo>InternalError</moreinfo>
</scan>
<scan id="29">
<regex>.*ERROR: Not enough data in stream buffer</regex>
<type>Error</type>
<message>An Internal Error Occurred. Please report to the Developers
</message>
<moreinfo>InternalError</moreinfo>
</scan>
<scan id="30">
<regex>.*ERROR: Not enough space in stream buffer</regex>
<type>Error</type>
<message>An Internal Error Occurred. Please report to the Developers
</message>
<moreinfo>InternalError</moreinfo>
</scan>
<scan id="31">
<regex>.*ERROR: Failed to read serial port state</regex>
<type>Error</type>
<message>An Internal Error Occurred. Please report to the Developers
</message>
<moreinfo>InternalError</moreinfo>
</scan>
<scan id="32">
<regex>.*ERROR: Failed to set serial port state</regex>
<type>Error</type>
<message>An Internal Error Occurred. Please report to the Developers
</message>
<moreinfo>InternalError</moreinfo>
</scan>
<scan id="33">
<regex>.*ERROR: Failed to set serial port timeouts</regex>
<type>Error</type>
<message>An Internal Error Occurred. Please report to the Developers
</message>
<moreinfo>InternalError</moreinfo>
</scan>
<scan id="34">
<regex>.*ERROR: Serial port write \((.*)\)</regex>
<type>Error</type>
<message>An Internal Error Occurred ${1}. Please report to the
Developers
</message>
<moreinfo>InternalError</moreinfo>
</scan>
<scan id="35">
<regex>.*WARNING: Failed to init the controller \(attempt (.*)\)
</regex>
<type>Error</type>
<message>An error occurred while trying to Open the Controller. Please
report to the Developers
</message>
<moreinfo>InternalError</moreinfo>
</scan>
<scan id="36">
<regex>.*WARNING: Driver::ReadConfig - (.*) is from an older version
of OpenZWave and cannot be loaded.
</regex>
<type>Error</type>
<message>The file ${1} is from a older version of OpenZWave. Please
delete these file and restart OZW if this message persists
</message>
<moreinfo>ConfigError</moreinfo>
</scan>
<scan id="37">
<regex>.*WARNING: Driver::ReadConfig - Home ID in file (.*) is
incorrect
</regex>
<type>Warning</type>
<message>The File ${1} contains a incorrect HomeID. Please remove this
file and restart your application if this message persists
</message>
<moreinfo>ConfigError</moreinfo>
</scan>
<scan id="38">
<regex>.*WARNING: Driver::ReadConfig - Home ID is missing from file
(.*)
</regex>
<type>Warning</type>
<message>The File ${1} does not contain a HomeID. Please remove this
file and restart your application if this message persists
</message>
<moreinfo>ConfigError</moreinfo>
</scan>
<scan id="39">
<regex>.*WARNING: Driver::ReadConfig - Controller Node ID in file (.*)
is incorrect
</regex>
<type>Warning</type>
<message>The File ${1} contains incorrect Controller Node ID. Please
remove this file and restart your application if this message
persists
</message>
<moreinfo>ConfigError</moreinfo>
</scan>
<scan id="40">
<regex>.*WARNING: Driver::ReadConfig - Node ID is missing from file
(.*)
</regex>
<type>Warning</type>
<message>The File ${1} does not contain a Node ID. Please remove this
file and restart your application if this message persists
</message>
<moreinfo>ConfigError</moreinfo>
</scan>
<scan id="41">
<regex>.*WARNING: Tried to write driver config with no home ID set
</regex>
<type>Warning</type>
<message>The Application triggered a WriteConfig but the library does
not have a valid HomeID. This is a Application Implementation Error.
Please report to the Application Developers
</message>
<moreinfo>AppError</moreinfo>
</scan>
<scan id="42">
<regex>.*WARNING: Device is not a sleeping node.</regex>
<type>Warning</type>
<message>A Message sent to ${node} was not acknowledged, and does not
support the WakeUP CC. This device may be disabled or offline
</message>
<moreinfo>NodeErrors</moreinfo>
</scan>
<scan id="43">
<regex>.*WARNING: 50ms passed without finding the length
byte...aborting frame read
</regex>
<type>Warning</type>
<message>A error was encountered communicating with the Controller. If
this message repeats it may indicate a problem and you should report
it to the Developers
</message>
<moreinfo>ControllerErrors</moreinfo>
</scan>
<scan id="44">
<regex>.*WARNING: 500ms passed without reading the rest of the
frame...aborting frame read
</regex>
<type>Warning</type>
<message>A error was encounters communicating with the Controller. If
this message repeats it may indicate a problem and you should report
it to the Developers
</message>
<moreinfo>ControllerErrors</moreinfo>
</scan>
<scan id="45">
<regex>.*WARNING: Checksum incorrect - sending NAK</regex>
<type>Warning</type>
<message>A message received from the Controller was corrupted. If this
message repeats it may indicate a problem with the Controller and you
should report it to the Developers
</message>
<moreinfo>ControllerErrors</moreinfo>
</scan>
<scan id="46">
<regex>.*m_currentMsg was NULL when trying to set MaxSendAttempts
</regex>
<type>Error</type>
<message>An Internal Error Occurred. Please report to the Developers
</message>
<moreinfo>InternalError</moreinfo>
</scan>
<scan id="47">
<regex>.*WARNING: NAK received...triggering resend</regex>
<type>Warning</type>
<message>A message sent to the Controller was corrupted. If this
message repeats it may indicate a problem with the Controller and you
should report it to the Developers
</message>
<moreinfo>InternalError</moreinfo>
</scan>
<scan id="48">
<regex>.*WARNING: Out of frame flow! .*\. Sending NAK.</regex>
<type>Error</type>
<message>This message could indicate you have selected the wrong
Serial Port. Please check your serial port and if the message
persists, please report it to the Developers
</message>
<moreinfo>AppError</moreinfo>
</scan>
<scan id="49">
<regex>.*WARNING: Received reply to FUNC_ID_ZW_REQUEST_NETWORK_UPDATE
- command failed
</regex>
<type>Warning</type>
<message>A Request to update the Network Topology failed. If you
continue to receive this message, please report it to the Developers
</message>
<moreinfo>NetworkError</moreinfo>
</scan>
<scan id="50">
<regex>.*WARNING: Received reply to FUNC_ID_ZW_ASSIGN_RETURN_ROUTE -
command failed
</regex>
<type>Warning</type>
<message>A request for a Node to update its Routing Table failed. if
you continue to receive this message, please report it to the
Developers
</message>
<moreinfo>NetworkError</moreinfo>
</scan>
<scan id="51">
<regex>.*WARNING: Received reply to FUNC_ID_ZW_DELETE_RETURN_ROUTE -
command failed
</regex>
<type>Warning</type>
<message>A request for a Node to update its Routing Table failed. if
you continue to receive this message, please report it to the
Developers
</message>
<moreinfo>NetworkError</moreinfo>
</scan>
<!-- Duplicate to above. <scan id="52"> <regex>.*WARNING: Received reply
to FUNC_ID_ZW_DELETE_RETURN_ROUTE - command failed</regex> <type>Warning</type>
<message>A request for a Node to update its Routing Table failed. if you
continue to receive this message, please report it to the Developers</message>
<moreinfo>NetworkError</moreinfo> </scan> -->
<scan id="53">
<regex>.*WARNING: Received reply to FUNC_ID_ZW_REMOVE_FAILED_NODE_ID -
(.*)
</regex>
<type>Warning</type>
<message>A request to remove a Failed Node Failed: ${1}. If the node
has not failed, you should just unpair it instead
</message>
<moreinfo>AddRemoveNode</moreinfo>
</scan>
<scan id="54">
<regex>.*WARNING: Received reply to FUNC_ID_ZW_IS_FAILED_NODE_ID -
node (.*) failed
</regex>
<type>Error</type>
<message>The Controller Believes that the ${node} has failed. You
should check it is operating correctly
</message>
<moreinfo>NetworkError</moreinfo>
</scan>
<scan id="55">
<regex>.*Received reply to FUNC_ID_ZW_IS_FAILED_NODE_ID - node (.*)
has not failed
</regex>
<type>Info</type>
<message>The Controller has confirmed that ${node} has not failed.
This is a informational message only
</message>
<moreinfo>NetworkError</moreinfo>
</scan>
<scan id="56">
<regex>.*WARNING: Received reply to FUNC_ID_ZW_REPLACE_FAILED_NODE -
command failed
</regex>
<type>Warning</type>
<message>A request to remove a Failed Node Failed: ${1}. If the node
has not failed, you should just unpair it instead.
</message>
<moreinfo>AddRemoveNode</moreinfo>
</scan>
<scan id="57">
<regex>.*WARNING: Received reply to FUNC_ID_ZW_DELETE_RETURN_ROUTE -
command failed
</regex>
<type>Warning</type>
<message>A request for a Node to update its Routing Table failed. if
you continue to receive this message, please report it to the
Developers
</message>
<moreinfo>NetworkError</moreinfo>
</scan>
<scan id="58">
<regex>.*WARNING: Unexpected Callback ID received</regex>
<type>Warning</type>
<message>This is a Internal Error. Please report it to the Developers
</message>
<moreinfo>InternalError</moreinfo>
</scan>
<scan id="59">
<regex>.*WARNING: Received reply to FUNC_ID_ZW_REQUEST_NETWORK_UPDATE:
Failed - Error. Process aborted.
</regex>
<type>Warning</type>
<message>A Request to update the Network was aborted. Please retry
this and if this message persists, please report it to the Developers
</message>
<moreinfo>NetworkError</moreinfo>
</scan>
<scan id="60">
<regex>.*WARNING: Received reply to FUNC_ID_ZW_REQUEST_NETWORK_UPDATE:
Failed - SUC is busy.
</regex>
<type>Warning</type>
<message>A Request to update the Network failed as the SUC Node was
Busy. Please retry this and if this message persists, please report
it to the Developers
</message>
<moreinfo>NetworkError</moreinfo>
</scan>
<scan id="61">
<regex>.*WARNING: Received reply to FUNC_ID_ZW_REQUEST_NETWORK_UPDATE:
Failed - SUC is disabled.
</regex>
<type>Warning</type>
<message>A Request to update the Network has failed as the SUC node is
disabled. Please check your SUC node and retry. if this message
persists, please report it to the Developers
</message>
<moreinfo>NetworkError</moreinfo>
</scan>
<scan id="62">
<regex>.*WARNING: Received reply to FUNC_ID_ZW_REQUEST_NETWORK_UPDATE:
Failed - Overflow. Full replication required.
</regex>
<type>Warning</type>
<message>A Request to update the Network has failed. Please retry this
and if this message persists, please report it to the Developers
</message>
<moreinfo>NetworkError</moreinfo>
</scan>
<scan id="63">
<regex>.*Remove Node Failed - NodeID 0 Returned</regex>
<type>Warning</type>
<message>A Request remove a Node Failed. Please retry this and if this
message persists, please report it to the Developers
</message>
<moreinfo>AddRemoveNode</moreinfo>
</scan>
<scan id="64">
<regex>.*WARNING: Node is 0 but not enough data to perform alternative
match.
</regex>
<type>Warning</type>
<message>This is a Internal Error. Please report it to the Developers
</message>
<moreinfo>InternalError</moreinfo>
</scan>
<scan id="65">
<regex>.*WARNING: REMOVE_NODE_STATUS_FAILED</regex>
<type>Warning</type>
<message>This is a Internal Error. Please report it to the Developers
</message>
<moreinfo>InternalError</moreinfo>
</scan>
<scan id="66">
<regex>.*WARNING: LEARN_MODE_FAILED</regex>
<type>Warning</type>
<message>This is a Internal Error. Please report it to the Developers
</message>
<moreinfo>InternalError</moreinfo>
</scan>
<scan id="67">
<regex>.*WARNING: Received reply to FUNC_ID_ZW_REMOVE_FAILED_NODE_ID -
Node (.*) is OK, so command failed
</regex>
<type>Warning</type>
<message>A Attempt to remove failed node for node ${1} failed as the
Controller believes this node is OK. Maybe you should just unpair the
node instead.
</message>
<moreinfo>AddRemoveNode</moreinfo>
</scan>
<scan id="68">
<regex>.*WARNING: Received reply to FUNC_ID_ZW_REMOVE_FAILED_NODE_ID -
unable to move node (.*) to failed nodes list
</regex>
<type>Warning</type>
<message>A Attempt to remove failed node for node ${1} failed as the
Controller believes this node is OK. Maybe you should just unpair the
node instead.
</message>
<moreinfo>AddRemoveNode</moreinfo>
</scan>
<scan id="69">
<regex>.*WARNING: REQUEST_NEIGHBOR_UPDATE_FAILED</regex>
<type>Warning</type>
<message>A Request for ${node} to update its Neighbor Table failed. If
you receive this message often, please report it to the Developers.
</message>
<moreinfo>NetworkError</moreinfo>
</scan>
<scan id="70">
<regex>.*WARNING: FUNC_ID_ZW_APPLICATION_UPDATE:
UPDATE_STATE_NODE_INFO_REQ_FAILED received
</regex>
<type>Warning</type>
<message>This is a Internal Error. Please report it to the Developers
</message>
<moreinfo>InternalError</moreinfo>
</scan>
<scan id="71">
<regex>.*Poll queue hasn't been able to execute for 300 secs or more
</regex>
<type>Warning</type>
<message>The Poll Thread has not been able to run for more than 5
minutes. This might indicate a overloaded machine or network
</message>
<moreinfo>OSError</moreinfo>
</scan>
<scan id="72">
<regex>.*WARNING: Driver::ReadButtons - zwbutton.xml is malformed
</regex>
<type>Warning</type>
<message>This is a Internal Error. Please report it to the Developers
</message>
<moreinfo>InternalError</moreinfo>
</scan>
<scan id="73">
<regex>.*WARNING: Driver::ReadButtons - zwbutton.xml is from an older
version of OpenZWave and cannot be loaded.
</regex>
<type>Warning</type>
<message>The zwbutton.xml file is from a old version of OpenZWave.
Please delete this file and restart your application
</message>
<moreinfo>ConfigError</moreinfo>
</scan>
<scan id="74">
<regex>.*WARNING: Driver::ReadButtons - cannot find Button Id for node
%d</regex>
<type>Warning</type>
<message>This is a Internal Error. Please report it to the Developers
</message>
<moreinfo>InternalError</moreinfo>
</scan>
<scan id="75">
<regex>.*WARNING: Received reply to FUNC_ID_ZW_SET_SLAVE_LEARN_MODE -
command failed
</regex>
<type>Warning</type>
<message>This is a Internal Error. Please report it to the Developers
</message>
<moreinfo>InternalError</moreinfo>
</scan>
<scan id="76">
<regex>.*Invalid Network Key. Does not contain 16 Bytes - Contains
(.*)
</regex>
<type>Error</type>
<message>The Network Key must contain 16 Bytes (Characters). It only
contains ${1}. Please update it.
</message>
<moreinfo>ConfigError</moreinfo>
</scan>
<scan id="77">
<regex>.*Cannot Convert Network Key Byte (.*) to Key</regex>
<type>Warning</type>
<message>The Byte ${1} in the Network Key is invalid. Please update it
</message>
<moreinfo>ConfigError</moreinfo>
</scan>
<scan id="78">
<regex>.*mgr, LogDriverStatistics() failed - _homeId (.*) not found
</regex>
<type>Warning</type>
<message>A call to LogDriverStatistics contained a invalid HomeID ${1}
- Please report this to the Application Developers
</message>
<moreinfo>AppError</moreinfo>
</scan>
<scan id="79">
<regex>.*Specified option [(.*)] was not found.</regex>
<type>Warning</type>
<message>A Request for a Option Key ${1} was not found. Please report
this to the Application Developers
</message>
<moreinfo>AppError</moreinfo>
</scan>
<scan id="80">
<regex>.*Failed to Parse (.*): (.*)</regex>
<type>Warning</type>
<message>The File ${1} is malformed. The Error is ${2}. You should
either correct the file, or remove it.
</message>
<moreinfo>ConfigError</moreinfo>
</scan>
<scan id="81">
<regex>.*Day Value was greater than range. Setting to Invalid</regex>
<type>Warning</type>
<message>The Day Value returned from the ClimateControlScheduleCC or
ClockCC was invalid. This is usually a device bug
</message>
<moreinfo>DeviceBugs</moreinfo>
</scan>
<scan id="82">
<regex>.*overrideState Value was greater than range. Setting to
Invalid
</regex>
<type>Warning</type>
<message>The OverRideState value returned from the
ClimateControlScheduleCC from the device was out of range. This is
usually a device bug
</message>
<moreinfo>DeviceBugs</moreinfo>
</scan>
<scan id="83">
<regex>.*Invalid XML - (.*) Attribute is wrong type or missing</regex>
<type>Warning</type>
<message>Either the OpenZWave State files, or one of the config files
was corrupted when trying to read the ${1} attribute. You should
consult the log in more detail to determine which file has a issue
</message>
<moreinfo>ConfigError</moreinfo>
</scan>
<scan id="84">
<regex>.*Got Unhandled Child Entry in TriggerRefreshValue XML Config:
.*
</regex>
<type>Error</type>
<message>The RefreshClassValue entry in one of the Device Config files
is not correct. Please report this to a Developer
</message>
<moreinfo>DeviceConfigError</moreinfo>
</scan>
<scan id="85">
<regex>.*Failed to add a RefreshClassValue from XML</regex>
<type>Error</type>
<message>The RefreshClassValue entry in one of the Device Config files
is not correct. Please report this to a Developer
</message>
<moreinfo>DeviceConfigError</moreinfo>
</scan>
<scan id="86">
<regex>.*Can't get Node</regex>
<type>Warning</type>
<message>An attempt to refresh other ClassValues failed as we could
not locate the affected Node. Please report this to the developers.
</message>
<moreinfo>InternalError</moreinfo>
</scan>
<scan id="87">
<regex>.*LockState Value was greater than range. Setting to Invalid
</regex>
<type>Warning</type>
<message>The value sent back by the DoorLock CC for the lockstate
variable was our of range. Please report this to a developer
</message>
<moreinfo>DeviceBugs</moreinfo>
</scan>
<scan id="88">
<regex>.*Recieved a Unsupported Door Lock Config Report .*</regex>
<type>Warning</type>
<message>The DoorLock CC from a device sent back a Unsupported Config
Report. Please report this to a Developer
</message>
<moreinfo>DeviceBugs</moreinfo>
</scan>
<scan id="89">
<regex>.*DoorLock::SetValue - Unhandled System_Config Variable .*
</regex>
<type>Warning</type>
<message>A Invalid ValueID was sent to the DoorLock CC. This is
usually a application related error
</message>
<moreinfo>AppError</moreinfo>
</scan>
<scan id="90">
<regex>.*Failed To Retrieve .* For SetValue</regex>
<type>Warning</type>
<message>OpenZWave could not retrieve the correct type of ValueID's
when sending commands to the DoorLock CC. This is usually a
application related error
</message>
<moreinfo>AppError</moreinfo>
</scan>
<scan id="91">
<regex>.*RequestValue _valueEnum was greater than range. Dropping
</regex>
<type>Warning</type>
<message>A attempt to retrieve a value from the EnergyProduction CC
was
out of range. This is usually a Application related error
</message>
<moreinfo>AppError</moreinfo>
</scan>
<scan id="92">
<regex>.*(.*) was greater than range. Dropping Message
</regex>
<type>Warning</type>
<message>A value returned from the one of the CommandClasses was out
of range (${1}). Please report this to a developer
</message>
<moreinfo>DeviceBugs</moreinfo>
</scan>
<scan id="93">
<regex>.*m_endPointFindIndex is higher than range. Not Sending
MultiChannelCmd_EndPointFind message
</regex>
<type>Warning</type>
<message>A value returned from the one of the CommandClasses was out
of range (${1}). Please report this to a developer
</message>
<moreinfo>DeviceBugs</moreinfo>
</scan>
<scan id="94">
<regex>.*m_endPointFindIndex is higher than range. Not Sending
MultiChannelCmd_EndPointFind message
</regex>
<type>Warning</type>
<message>A value returned from the one of the CommandClasses was out
of range (${1}). Please report this to a developer
</message>
<moreinfo>DeviceBugs</moreinfo>
</scan>
<scan id="95">
<regex>.*Failed to Init AES Engine</regex>
<type>Error</type>
<message>A Internal Error Occurred. Please report to the Developers
</message>
<moreinfo>InternalError</moreinfo>
</scan>
<scan id="96">
<regex>.*Failed to Set Initial Network Key for Encryption</regex>
<type>Error</type>
<message>A Internal Error Occurred. Please report to the Developers
</message>
<moreinfo>InternalError</moreinfo>
</scan>
<scan id="97">
<regex>.*Failed to Set Initial Network Key for Authentication</regex>
<type>Error</type>
<message>A Internal Error Occurred. Please report to the Developers
</message>
<moreinfo>InternalError</moreinfo>
</scan>
<scan id="98">
<regex>.*Failed to Generate Encrypted Network Key for Encryption
</regex>
<type>Error</type>
<message>A Internal Error Occurred. Please report to the Developers
</message>
<moreinfo>InternalError</moreinfo>
</scan>
<scan id="99">
<regex>.*Failed to Generate Encrypted Network Key for Authentication
</regex>
<type>Error</type>
<message>A Internal Error Occurred. Please report to the Developers
</message>
<moreinfo>InternalError</moreinfo>
</scan>
<scan id="100">
<regex>.*Failed to set Encrypted Network Key for Encryption</regex>
<type>Error</type>
<message>A Internal Error Occurred. Please report to the Developers
</message>
<moreinfo>InternalError</moreinfo>
</scan>
<scan id="101">
<regex>.*Failed to set Encrypted Network Key for Authentication
</regex>
<type>Error</type>
<message>A Internal Error Occurred. Please report to the Developers
</message>
<moreinfo>InternalError</moreinfo>
</scan>
<scan id="102">
<regex>.*Failed to Decrypt Packet</regex>
<type>Error</type>
<message>A attempt to decrypt a encrypted packet from a device failed.
Please ensure your Network Key is valid.
</message>
<moreinfo>SecurityRelated</moreinfo>
</scan>
<scan id="103">
<regex>.*Already Received a SecurityCmd_SchemeReport from the node.
Ignoring
</regex>
<type>Info</type>
<message>The Device resent a SchemeReport message to us. If you
receive lots of these messages, please report it to a developer
</message>
<moreinfo>InternalError</moreinfo>
</scan>
<scan id="104">
<regex>.*No common security scheme. The device will continue as an
unsecured node.
</regex>
<type>Error</type>
<message>OpenZWave and the Device could not find a Common Security
Scheme to use for encryption. This could indicate a new protocol
change. Please report it to a Developer
</message>
<moreinfo>SecurityRelated</moreinfo>
</scan>
<scan id="105">
<regex>.*Failed to Encrypt Packet</regex>
<type>Error</type>
<message>A attempt to decrypt a encrypted packet from a device failed.
Please ensure your Network Key is valid.
</message>
<moreinfo>SecurityRelated</moreinfo>
</scan>
<scan id="106">
<regex>.*MAC Authentication of Packet Failed. Dropping</regex>
<type>Warning</type>
<message>A Encrypted message was received that appears corrupted. If
you receive lots of these messages, please report it to a Developer
</message>
<moreinfo>SecurityRelated</moreinfo>
</scan>
<scan id="107">
<regex>.*Failed Initial ECB Encrypt of Auth Packet</regex>
<type>Error</type>
<message>A Internal Error Occurred. Please report to the Developers
</message>
<moreinfo>InternalError</moreinfo>
</scan>
<scan id="108">
<regex>.*Failed Subsequent \(.*\) ECB Encrypt of Auth Packet</regex>
<type>Error</type>
<message>A Internal Error Occurred. Please report to the Developers
</message>
<moreinfo>InternalError</moreinfo>
</scan>
<scan id="109">
<regex>.*Failed Final ECB Encrypt of Auth Packet</regex>
<type>Error</type>
<message>A Internal Error Occurred. Please report to the Developers
</message>
<moreinfo>InternalError</moreinfo>
</scan>
<scan id="110">
<regex>.* Value was greater than range. Dropping</regex>
<type>Warning</type>
<message>A value returned from the one of the CommandClasses was out
of range (${1}). Please report this to a developer
</message>
<moreinfo>DeviceBugs</moreinfo>
</scan>
<scan id="111">
<regex>.*Scale Value for .* was greater than range. Setting to empty
</regex>
<type>Warning</type>
<message>A value returned from the one of the CommandClasses was out
of range (${1}). Please report this to a developer
</message>
<moreinfo>DeviceBugs</moreinfo>
</scan>
<scan id="112">
<regex>.*UserCodeCmd_Get with Index 0 not Supported</regex>
<type>Warning</type>
<message>An attempt to retrieve the UserCode at Index 0 was requested,
which is a invalid location. This is usually a Application error.
Please report to your application developers
</message>
<moreinfo>AppError</moreinfo>
</scan>