diff options
author | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2022-01-02 16:38:20 -0500 |
---|---|---|
committer | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2022-01-02 16:38:20 -0500 |
commit | 52233b714f4557c84751df06d54e30d1db85fbcb (patch) | |
tree | bfa3d6e9149636d56a42094229a46b3d1b77e34a /qolab/hardware/scpi.py | |
parent | df95868bf7250809a13756f1051efb10424553c5 (diff) | |
download | pyExpControl-52233b714f4557c84751df06d54e30d1db85fbcb.tar.gz pyExpControl-52233b714f4557c84751df06d54e30d1db85fbcb.zip |
changed log level in scpi
Diffstat (limited to 'qolab/hardware/scpi.py')
-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) |