Skip to content

Commit 15caefb

Browse files
changed info -> debug in autosaving
1 parent 92fb109 commit 15caefb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

varipeps/optimization/optimizer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,12 +205,12 @@ def autosave_function(
205205
auxiliary_data: Optional[Dict[str, Any]] = None,
206206
) -> None:
207207
if counter is not None:
208-
logger.info(f"💾 Autosaving to {str(filename)}.{counter}")
208+
logger.debug(f"💾 Autosaving to {str(filename)}.{counter}")
209209
unitcell.save_to_file(
210210
f"{str(filename)}.{counter}", auxiliary_data=auxiliary_data
211211
)
212212
else:
213-
logger.info(f"💾 Autosaving to {str(filename)}")
213+
logger.debug(f"💾 Autosaving to {str(filename)}")
214214
unitcell.save_to_file(filename, auxiliary_data=auxiliary_data)
215215

216216

0 commit comments

Comments
 (0)