Fix GC logging
This commit is contained in:
parent
5f87c3ee8f
commit
679acce20a
1 changed files with 2 additions and 2 deletions
|
@ -126,7 +126,7 @@ def perform() -> None: # noqa: C901
|
||||||
logger.exception(f"failed to process {data!r}")
|
logger.exception(f"failed to process {data!r}")
|
||||||
|
|
||||||
after_gc_create = perf_counter()
|
after_gc_create = perf_counter()
|
||||||
time_to_gc_create = start - after_gc_create
|
time_to_gc_create = after_gc_create - start
|
||||||
logger.info(
|
logger.info(
|
||||||
f"{time_to_gc_create:.2f} seconds to analyze {create_count} Create, {create_deleted} deleted"
|
f"{time_to_gc_create:.2f} seconds to analyze {create_count} Create, {create_deleted} deleted"
|
||||||
)
|
)
|
||||||
|
@ -176,7 +176,7 @@ def perform() -> None: # noqa: C901
|
||||||
logger.exception(f"failed to process {data!r}")
|
logger.exception(f"failed to process {data!r}")
|
||||||
|
|
||||||
after_gc_announce = perf_counter()
|
after_gc_announce = perf_counter()
|
||||||
time_to_gc_announce = after_gc_create - after_gc_announce
|
time_to_gc_announce = after_gc_announce - after_gc_create
|
||||||
logger.info(
|
logger.info(
|
||||||
f"{time_to_gc_announce:.2f} seconds to analyze {announce_count} Announce, {announce_deleted} deleted"
|
f"{time_to_gc_announce:.2f} seconds to analyze {announce_count} Announce, {announce_deleted} deleted"
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue