Added the task type when printing its name

This commit is contained in:
Salvador E. Tropea 2020-03-14 17:25:49 -03:00
parent c0acfe3865
commit a56a847621
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ class Plotter(object):
for op in self.cfg.outputs:
logger.debug("Processing output: {}".format(op.name))
logger.info('- %s (%s)' % (op.description,op.name))
logger.info('- %s (%s) [%s]' % (op.description,op.name,op.options.type))
# fresh plot controller
pc = pcbnew.PLOT_CONTROLLER(board)