diff options
-rw-r--r-- | qolab/hardware/scpi.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/qolab/hardware/scpi.py b/qolab/hardware/scpi.py index 2054410..6f4037d 100644 --- a/qolab/hardware/scpi.py +++ b/qolab/hardware/scpi.py @@ -8,8 +8,7 @@ import time logging.basicConfig(format='%(asctime)s %(levelname)8s %(name)s: %(message)s', datefmt='%m/%d/%Y %H:%M:%S') logger = logging.getLogger('qolab.hardware.scpi') -# logger.setLevel(logging.INFO) -logger.setLevel(logging.DEBUG) +logger.setLevel(logging.INFO) def response2numStr(strIn, firstSeparator=None, unit=None): # Often an instrument reply is in the form 'TDIV 2.00E-08S' (for example Siglent Scope) |