概述
logging接口主要是用来记录程序运行中的日志信息的,如:错误信息,调试信息,警告信息,普通信息等
详情
debug
记录Debug(调试)日志信息
debug(text)
参数:
- text:需要记录的日志信息
返回值:
- 无
示例1:
记录调试信息 hello world
import xbot
def main(args):
xbot.logging.debug('hello world')
info
记录普通日志信息
info(text)
参数:
- text:需要记录的日志信息
返回值:
- 无
示例1:
记录普通信息 hello world
import xbot
def main(args):
xbot.logging.info('hello world')
warning
记录警告日志信息
warning(text)
参数:
- text:需要记录的日志信息
返回值:
- 无
示例1:
记录警告信息 hello world
import xbot
def main(args):
xbot.logging.warning('hello world')
error
记录错误日志信息
error(text)
参数:
- text:需要记录的日志信息
返回值:
- 无
示例1:
记录错误信息 hello world
import xbot
def main(args):
xbot.logging.error('hello world')