Skip to content

Commit 2eec853

Browse files
committed
Tweak debug
1 parent 02f3db1 commit 2eec853

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

kiplot/config_reader.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,6 @@ def _parse_out_opts(self, otype, options):
335335

336336
self._perform_config_mapping(otype, options, MAPPINGS, to)
337337

338-
print to, to.__dict__
339338
return po
340339

341340
def _get_layer_from_str(self, s):
@@ -420,6 +419,8 @@ def _parse_output(self, o_obj):
420419
except KeyError:
421420
raise YamlError("Output need to have options specified")
422421

422+
logging.debug("Parsing output options for {} ({})".format(name, otype))
423+
423424
outdir = self._get_required(o_obj, 'dir')
424425

425426
output_opts = self._parse_out_opts(otype, options)

kiplot/kiplot.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,6 @@ def _configure_plot_ctrl(self, plot_ctrl, output):
295295
po.SetAutoScale(opts.auto_scale)
296296
po.SetScale(opts.scaling)
297297

298-
print opts.mirror_plot
299298
po.SetMirror(opts.mirror_plot)
300299
po.SetNegative(opts.negative_plot)
301300

0 commit comments

Comments
 (0)