From 68e49049726cb7629e7846159edd3bb67e32d9f2 Mon Sep 17 00:00:00 2001 From: make-ing Date: Mon, 12 Oct 2015 13:49:06 +0200 Subject: [PATCH] more debug messages --- src/octoprint/util/comm_acc.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/octoprint/util/comm_acc.py b/src/octoprint/util/comm_acc.py index dcad2339..12b19a9b 100644 --- a/src/octoprint/util/comm_acc.py +++ b/src/octoprint/util/comm_acc.py @@ -1761,7 +1761,9 @@ class MachineCom(object): continue # wait until we have something in the queue + self._log("+++ start get") entry = self._send_queue.get() + self._log("+++ start get") if "?" in entry: self._log("--- False") @@ -1815,7 +1817,9 @@ class MachineCom(object): self._clear_to_send.clear() # now we just wait for the next clear and then start again + self._log("*** start wait") self._clear_to_send.wait() + self._log("*** end wait") except: self._logger.exception("Caught an exception in the send loop") self._log("Closing down send loop")