diff --git a/arkane/common.py b/arkane/common.py index 512228ceb9a..96018c9e80b 100644 --- a/arkane/common.py +++ b/arkane/common.py @@ -191,7 +191,6 @@ def save_yaml(self, path): content = yaml.dump(data=self.as_dict(), Dumper=Dumper) # remove empty lines from the file (multi-line strings have excess new line brakes for some reason): content = content.replace('\n\n', '\n') - logging.info(content) with open(full_path, 'w') as f: f.write(content) logging.debug('Dumping species {0} data as {1}'.format(self.label, filename))