Skip to content

Commit 23d2053

Browse files
committed
dump.py: add more logging
1 parent 99b499a commit 23d2053

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

dump.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,11 @@ def _dump_all_workflows(viewer: str, output: Path) -> None:
3636
:return: None
3737
"""
3838
total_elements = _get_total_elements(viewer)
39+
logger.info("Total number of workflows: %s", total_elements)
3940
pages = ceil(total_elements / MAX_PAGE_SIZE)
41+
logger.info(
42+
"Will create %s separate dump files of up to %s workflows each.",
43+
pages, MAX_PAGE_SIZE)
4044
for page in range(0, pages):
4145
_dump_workflows(viewer, output, page, MAX_PAGE_SIZE)
4246

0 commit comments

Comments
 (0)