admin
2024-05-22 4ee1bd5de9ca76a69adac6e17a11bd686c742ef3
1
2
3
4
5
6
7
8
9
from log_module import async_log_util
from log_module.log import logger_request_debug
from utils import tool
 
 
def request_info(type_name, content, thread_id=None):
    if not thread_id:
        thread_id = tool.get_thread_id()
    async_log_util.info(logger_request_debug, f"【{thread_id}】【{type_name}】 {content}")