Skip to content

Commit 9fd7d90

Browse files
changed info -> debug in autosaving
1 parent e0b56d6 commit 9fd7d90

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
@@ -204,12 +204,12 @@ def autosave_function(
204204
auxiliary_data: Optional[Dict[str, Any]] = None,
205205
) -> None:
206206
if counter is not None:
207-
logger.info(f"💾 Autosaving to {str(filename)}.{counter}")
207+
logger.debug(f"💾 Autosaving to {str(filename)}.{counter}")
208208
unitcell.save_to_file(
209209
f"{str(filename)}.{counter}", auxiliary_data=auxiliary_data
210210
)
211211
else:
212-
logger.info(f"💾 Autosaving to {str(filename)}")
212+
logger.debug(f"💾 Autosaving to {str(filename)}")
213213
unitcell.save_to_file(filename, auxiliary_data=auxiliary_data)
214214

215215

0 commit comments

Comments
 (0)