Skip to content

Commit

Permalink
When processing an external, print out its path in addition to the ba…
Browse files Browse the repository at this point in the history
…se filename (to disambiguate all the externals.cfg's)
  • Loading branch information
johnpaulalex committed Dec 30, 2022
1 parent 975d7fd commit c677b94
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion manic/externals_description.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ def read_externals_description_file(root_dir, file_name):
root_dir = os.path.abspath(root_dir)
msg = 'In directory : {0}'.format(root_dir)
logging.info(msg)
printlog('Processing externals description file : {0}'.format(file_name))
printlog('Processing externals description file : {0} ({1})'.format(file_name,
root_dir))

file_path = os.path.join(root_dir, file_name)
if not os.path.exists(file_name):
Expand Down

0 comments on commit c677b94

Please sign in to comment.