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

@@ -9,7 +9,7 @@ from src.plugin_system.apis import generator_api, send_api, message_api, databas
from src.person_info.person_info import get_person_info_manager
from .hfc_context import HfcContext
logger = get_logger("hfc.response")
logger = get_logger("hfc")
class ResponseHandler:
def __init__(self, context: HfcContext):