Tiny change: added a debug log line

This commit is contained in:
Sylvain Tricot 2020-11-09 14:16:39 +01:00
parent 0ee6c2d791
commit 46d7290b0f
1 changed files with 1 additions and 0 deletions

View File

@ -907,6 +907,7 @@ class SpecIO(object):
if content != old_content: if content != old_content:
with open(filename, 'w') as fd: with open(filename, 'w') as fd:
fd.write(content) fd.write(content)
LOGGER.debug(f"Writing Spec input file written in {filename}")
modified = True modified = True
return modified return modified