Commit 204d66f3 authored by jtc42's avatar jtc42
Browse files

Converted prints into logging

parent 8be2c8ea
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -271,10 +271,10 @@ class ExtensibleSerialInstrument(object):
            success = False
            for port_name, _, _ in serial.tools.list_ports.comports(): #loop through serial ports, apparently 256 is the limit?!
                try:
                    print("Trying port",port_name)
                    logging.info("Trying port",port_name)
                    self.open(port_name)
                    success = True
                    print("Success!")
                    logging.info("Success!")
                except:
                    pass
                finally: