python输出内容到终端_【已解决】使Python中的logging的日志内容不输出到(Windows的cmd,Linux的terminal等)终端中...

本文介绍了如何配置Python的logging模块,使其仅将日志信息写入文件,而不显示在Windows的CMD或Linux的终端中。通过设置FileHandler并调整日志级别,实现了日志内容不输出到命令行。
摘要由CSDN通过智能技术生成

【背景】

看到:

所以去试试,看看能否实现,对于python的logging,使得不输出信息到对应的windows的cmd中。

此处,假设需求是:

只输出内容到文件中,但是不显示到windows的cmd中。

【解决过程】

1.参考这里:

去写测试代码。

经过一番折腾,代码如下:#!/usr/bin/python

# -*- coding: utf-8 -*-

"""

Function:

【已解决】使Python中的logging的日志内容不输出到(Windows的cmd,Linux的terminal等)终端中

https://www.crifan.com/python_logging_not_ouput_info_to_command_line_or_terminal

Author: Crifan Li

Time: 2013-01-30

"""

#---------------------------------import---------------------------------------

import logging;

#------------------------------------------------------------------------------

def main():

logging.info("logging.info: This is logging example, current file log level is logging.DEBUG");

logging.debug("logging.debug: you should not see this line in log file, for current file log level to logging.DEBUG");

logging.warning("logging.warning: you can see this line in log file , for current file log level to logging.DEBUG, and logging.warning is above logging.DEBUG");

logging.error("logging.error: you can see this line in log file , for current file log level to lo

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值