Skip to content

en plugin dev style

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

Code Style Guide

Logging

In plugins, please use the logging module to record logs, do not use print statements (this will cause logs to not be output in the container environment).

import logging

logger = logging.getLogger(__name__)  # Import logging module at the beginning of any Python file and define logger object

logger.info('This is an info message')  # Use logger.info to record info level logs
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