Skip to content

Commit

Permalink
Merge pull request ESCOMP#170 from johnpaulalex/printdir
Browse files Browse the repository at this point in the history
Print full paths to external.cfg files being read
  • Loading branch information
jedwards4b committed Jan 4, 2023
2 parents 975d7fd + c677b94 commit e6aa7d2
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 e6aa7d2

Please sign in to comment.