Skip to content

zh plugin dev style

langbot-wiki-sync[bot] edited this page Jul 29, 2026 · 1 revision

代码规范指南

日志记录

在插件中请使用logging模块记录日志,不要使用print语句(这将导致容器环境中无法输出日志)。

import logging

logger = logging.getLogger(__name__)  # 在任何 Python 文件的开头导入 logging 模块,并定义 logger 对象

logger.info('This is an info message')  # 使用 logger.info 记录信息级别日志
logger.warning('This is a warning message')
logger.error('This is an error message')

LangBot Documentation

Home

简体中文
指南
开发者
API 参考
Other pages
English
Guides
Developers
API Reference
Other pages
日本語
ガイド
開発者
API リファレンス
Other pages

Clone this wiki locally