Removed debug messages in run_drc/run_erc

This commit is contained in:
Salvador E. Tropea 2022-09-16 08:45:27 -03:00
parent 67175dcbd9
commit 751e8e8c2f
2 changed files with 0 additions and 2 deletions

View File

@ -41,7 +41,6 @@ class Run_DRC(BasePreFlight): # noqa: F821
out_pattern = GS.global_output if GS.global_output is not None else GS.def_global_output
name = Optionable.expand_filename_pcb(self, out_pattern)
out_dir = self.expand_dirname(GS.out_dir)
logger.error(GS.global_dir)
if GS.global_dir and GS.global_use_dir_for_preflights:
out_dir = os.path.join(out_dir, self.expand_dirname(GS.global_dir))
return [os.path.abspath(os.path.join(out_dir, name))]

View File

@ -42,7 +42,6 @@ class Run_ERC(BasePreFlight): # noqa: F821
out_pattern = GS.global_output if GS.global_output is not None else GS.def_global_output
name = Optionable.expand_filename_sch(self, out_pattern)
out_dir = self.expand_dirname(GS.out_dir)
logger.error(GS.global_dir)
if GS.global_dir and GS.global_use_dir_for_preflights:
out_dir = os.path.join(out_dir, self.expand_dirname(GS.global_dir))
return [os.path.abspath(os.path.join(out_dir, name))]