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}")
|