Show more info in verbose_debug

This commit is contained in:
yangdx
2025-03-28 21:39:04 +08:00
parent 491c78dac1
commit feacae1ce4

View File

@@ -46,7 +46,7 @@ def verbose_debug(msg: str, *args, **kwargs):
formatted_msg = msg
# Then truncate the formatted message
truncated_msg = (
formatted_msg[:50] + "..." if len(formatted_msg) > 50 else formatted_msg
formatted_msg[:100] + "..." if len(formatted_msg) > 100 else formatted_msg
)
logger.debug(truncated_msg, **kwargs)