Skip to content

Commit a363c0b

Browse files
committed
removed very noisy debug prints
1 parent 0c89fdc commit a363c0b

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

microscope/controllers/asi.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,15 +199,13 @@ def get_number_axes(self):
199199
def command(self, command: bytes) -> None:
200200
"""Send command to device."""
201201
with self._lock:
202-
print("send %s", command)
203202
self._serial.write(command + b"\r")
204203

205204
def readline(self) -> bytes:
206205
"""Read a line from the device connection until ``\\r\\n``."""
207206
with self._lock:
208207
line = self._serial.read_until(b"\r")
209208
# _logger.warning
210-
print("read line %s" % line)
211209
return line
212210

213211
def read_multiline(self):

0 commit comments

Comments
 (0)