diff --git a/script/camtool.py b/script/camtool.py index 71f6c1d..977cf90 100644 --- a/script/camtool.py +++ b/script/camtool.py @@ -98,9 +98,11 @@ class CamTool(DeviceBase): start = time.time() while(True): try: - caget(channel) + print "Reading" + print caget(channel) break - except: + except Exception as e: + print str(e) if time.time() - start > timeout: raise Exception("Timeout waiting for channel: " + channel) time.sleep(0.5)