[Diff][Schematic] Add debug prints about project-copies
This commit is contained in:
parent
a02999d50a
commit
f3c1865d00
|
|
@ -463,9 +463,11 @@ class GS(object):
|
||||||
source = GS.pro_file
|
source = GS.pro_file
|
||||||
prj_file = os.path.join(sch_dir, GS.sch_basename+ext)
|
prj_file = os.path.join(sch_dir, GS.sch_basename+ext)
|
||||||
if source is not None and os.path.isfile(source):
|
if source is not None and os.path.isfile(source):
|
||||||
|
logger.debug('Copying project `{}` to `{}`'.format(source, prj_file))
|
||||||
copy2(source, prj_file)
|
copy2(source, prj_file)
|
||||||
GS.fix_page_layout(prj_file) # Alias for KiConf.fix_page_layout
|
GS.fix_page_layout(prj_file) # Alias for KiConf.fix_page_layout
|
||||||
else:
|
else:
|
||||||
|
logger.debug('Creating dummy project file `{}`'.format(prj_file))
|
||||||
# Create a dummy project file to avoid warnings
|
# Create a dummy project file to avoid warnings
|
||||||
f = open(prj_file, 'wt')
|
f = open(prj_file, 'wt')
|
||||||
f.close()
|
f.close()
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue