style(chat): 统一 chat_loop 模块 logger 命名并添加业务注释

将各子模块 logger 由 hfc.* 缩减为统一 "hfc"

涉及的子模块:
- cycle_tracker / energy_manager / hfc_utils / proactive_thinker / response_handler
This commit is contained in:
minecraft1024a
2025-08-21 15:32:57 +08:00
parent 785b3d2f2a
commit e3cedd54ff
6 changed files with 15 additions and 15 deletions

View File

@@ -5,7 +5,7 @@ from src.common.logger import get_logger
from src.chat.chat_loop.hfc_utils import CycleDetail
from .hfc_context import HfcContext
logger = get_logger("hfc.cycle")
logger = get_logger("hfc")
class CycleTracker:
def __init__(self, context: HfcContext):