We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92fb109 commit 15caefbCopy full SHA for 15caefb
varipeps/optimization/optimizer.py
@@ -205,12 +205,12 @@ def autosave_function(
205
auxiliary_data: Optional[Dict[str, Any]] = None,
206
) -> None:
207
if counter is not None:
208
- logger.info(f"💾 Autosaving to {str(filename)}.{counter}")
+ logger.debug(f"💾 Autosaving to {str(filename)}.{counter}")
209
unitcell.save_to_file(
210
f"{str(filename)}.{counter}", auxiliary_data=auxiliary_data
211
)
212
else:
213
- logger.info(f"💾 Autosaving to {str(filename)}")
+ logger.debug(f"💾 Autosaving to {str(filename)}")
214
unitcell.save_to_file(filename, auxiliary_data=auxiliary_data)
215
216
0 commit comments