update:减少日志产生

This commit is contained in:
hrz
2025-12-01 16:38:10 +08:00
parent fb5c35e6c9
commit f3f0c24e16
+3 -3
View File
@@ -2,6 +2,7 @@
全局GC管理模块 全局GC管理模块
定期执行垃圾回收,避免频繁触发GC导致的GIL锁问题 定期执行垃圾回收,避免频繁触发GC导致的GIL锁问题
""" """
import gc import gc
import asyncio import asyncio
import threading import threading
@@ -60,8 +61,7 @@ class GlobalGCManager:
# 等待指定间隔 # 等待指定间隔
try: try:
await asyncio.wait_for( await asyncio.wait_for(
self._stop_event.wait(), self._stop_event.wait(), timeout=self.interval_seconds
timeout=self.interval_seconds
) )
# 如果stop_event被设置,退出循环 # 如果stop_event被设置,退出循环
break break
@@ -94,7 +94,7 @@ class GlobalGCManager:
return before, collected, after return before, collected, after
before, collected, after = await loop.run_in_executor(None, do_gc) before, collected, after = await loop.run_in_executor(None, do_gc)
logger.bind(tag=TAG).info( logger.bind(tag=TAG).debug(
f"全局GC执行完成 - 回收对象: {collected}, " f"全局GC执行完成 - 回收对象: {collected}, "
f"对象数量: {before} -> {after}" f"对象数量: {before} -> {after}"
) )