Skip to content

Commit 266a5a3

Browse files
committed
remove unnecessary debug statements
1 parent 8af5e2e commit 266a5a3

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

octoprint_bettergrblsupport/__init__.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -544,15 +544,13 @@ def on_settings_save(self, data):
544544
url = "http://{}:{}/files".format(self.fluidSettings.get("Hostname"), self.fluidSettings.get("HTTP/Port"))
545545
params = {'action': 'delete', 'filename': self.fluidSettings.get("Config/Filename")}
546546
r = requests.get(url, params)
547-
self._logger.debug("delete result=[{}]".format(r))
548547
r.close()
549548

550549
# lets wait a second for fluid to settle down
551550
time.sleep(1)
552551

553552
files = {'file': (self.fluidSettings.get("Config/Filename"), self.fluidConfig)}
554553
r = requests.post(url, files=files)
555-
self._logger.debug("post result=[{}]".format(r))
556554
r.close()
557555

558556
if not "fluidSettings" in data:
@@ -652,7 +650,7 @@ def hook_gcode_sending(self, comm_instance, phase, cmd, cmd_type, gcode, *args,
652650
cmd = cmd.lstrip("\r").lstrip("\n").rstrip("\r").rstrip("\n")
653651

654652
# suppress temperature if machine is printing
655-
if "M105" in cmd.upper() or self.statusCommand.startswith(self.statusCommand):
653+
if "M105" in cmd.upper() or cmd.startswith(self.statusCommand):
656654
if (self.disablePolling and self._printer.is_printing()) or len(self.lastRequest) > 0 or self.noStatusRequests:
657655
self._logger.debug('Ignoring %s', cmd)
658656
return (None, )

0 commit comments

Comments
 (0)