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 e0b56d6 commit 9fd7d90Copy full SHA for 9fd7d90
varipeps/optimization/optimizer.py
@@ -204,12 +204,12 @@ def autosave_function(
204
auxiliary_data: Optional[Dict[str, Any]] = None,
205
) -> None:
206
if counter is not None:
207
- logger.info(f"💾 Autosaving to {str(filename)}.{counter}")
+ logger.debug(f"💾 Autosaving to {str(filename)}.{counter}")
208
unitcell.save_to_file(
209
f"{str(filename)}.{counter}", auxiliary_data=auxiliary_data
210
)
211
else:
212
- logger.info(f"💾 Autosaving to {str(filename)}")
+ logger.debug(f"💾 Autosaving to {str(filename)}")
213
unitcell.save_to_file(filename, auxiliary_data=auxiliary_data)
214
215
0 commit comments