From f5eef06e88e11f2b528b09a228d8acd1861a5a30 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gina=20H=C3=A4u=C3=9Fge?= Date: Mon, 12 Jan 2015 10:45:39 +0100 Subject: [PATCH] Fixed wrong variable name Closes #715 --- src/octoprint/events.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/octoprint/events.py b/src/octoprint/events.py index d69b39ae..4ad9696a 100644 --- a/src/octoprint/events.py +++ b/src/octoprint/events.py @@ -308,7 +308,7 @@ class CommandTrigger(GenericEventListener): def _executeGcodeCommand(self, command): commands = [command] if isinstance(command, (list, tuple, set)): - self.logger.debug("Executing GCode commands: %r" % command) + self._logger.debug("Executing GCode commands: %r" % command) commands = list(command) else: self._logger.debug("Executing GCode command: %s" % command)