commit e016ce520f6dda82c293b10ef6590eaa7fab4c4a
Author: David Sorber <david.sorber@gmail.com>
Date:   Tue Jul 31 07:06:53 2018 -0400

    Add some debug to checker.py script.

diff --git a/software/misc/checker.py b/software/misc/checker.py
index 0b3cac0..2355ac4 100755
--- a/software/misc/checker.py
+++ b/software/misc/checker.py
@@ -84,7 +84,8 @@ def check_raid(devices):
         # Parse out the 'state' line
         raid_state = raw_out[11][18:].strip()
         if raid_state != 'clean':
-            errors.append('/dev/{:s} not in "clean" state'.format(device))
+            errors.append('/dev/{:s} not in "clean" state ({:s})'
+                          .format(device, raid_state))
         
         output.extend(raw_out)
     
