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)