Fix logger call for gcode multi commands events
This commit is contained in:
parent
f32c977381
commit
8a61e4517f
1 changed files with 1 additions and 1 deletions
|
|
@ -293,7 +293,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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue