小编Pau*_*l H的帖子

在再次写入之前,如何让logger删除现有的日志文件?

使用下面的配置,我的日志文件将被称为'test-debug.log',并且每次运行脚本时它都会无限增长.我只是希望这个日志文件包含最近一次运行脚本的日志记录.应该在重新开始之前删除日志.

我怎么做?

logger = logging.getLogger('test') #Create a log with the same name as the script that created it
logger.setLevel('DEBUG')


#Create handlers and set their logging level
filehandler_dbg = logging.FileHandler(logger.name + '-debug.log')
filehandler_dbg.setLevel('DEBUG') 


#Create custom formats of the logrecord fit for both the logfile and the console
streamformatter = logging.Formatter(fmt='%(levelname)s:\t%(threadName)s:\t%(funcName)s:\t\t%(message)s', datefmt='%H:%M:%S') #We only want to see certain parts of the message


#Apply formatters to handlers
filehandler_dbg.setFormatter(streamformatter)


#Add handlers to logger
logger.addHandler(filehandler_dbg)
Run Code Online (Sandbox Code Playgroud)

python logging filehandler

39
推荐指数
1
解决办法
2万
查看次数

如何使用 Windows cmd 在文本文件的每一行前面添加一个字符串?

我有一个很长的列表,每行都写着

p1 Title 1
p24 Title 2
p84 Title 3
...
Run Code Online (Sandbox Code Playgroud)

我需要在每个文件前面加上一个简单的字符串,就像书的首字母缩写一样。

MB.p1 Title 1
MB.p24 Title 2
MB.p84 Title 3
...
Run Code Online (Sandbox Code Playgroud)

我已经尝试过批处理文件中的提示,以将字符添加到txt文件中每行的开头和结尾以及如何使用Windows批处理文件循环遍历文本文件中的每一行?

windows cmd batch-file

5
推荐指数
1
解决办法
1万
查看次数

我如何格式化日志,以便它们在列中打印出来?

我有一个项目,其中不同的线程和函数StreamHandler()使用不同的日志级别记录到控制台中的同一日志,其中一些是自定义的。

我的日志被格式化为:

streamformatter = logging.Formatter(fmt='%(levelname)s:\t%(threadName)s:\t%(funcName)s:\t\t%(message)s', datefmt='%H:%M:%S')
Run Code Online (Sandbox Code Playgroud)

这使我的日志在默认情况下看起来像这样的乱码,在那里查看或轻松查看何时调用了什么函数以及从哪个线程调用。

INFO:   COM14-fwcif-listener :  _receive_v32:       my_success: Sending 24 lines to formatter
DB_TRACE:   COM14-fwcif-listener :  _format_and_log_v32:        {"prompt": "undef-COM14", "x_type": "tracelogentry", "y_time": 1392695506.044583, "z_msg": "...."}
INFO:   COM13-fwutil-listener:  _receive_v32:       my_success: Sending 10 lines to formatter
DB_TRACE:   COM13-fwutil-listener:  _format_and_log_v32:        {"prompt": "undef-COM13", "x_type": "tracelogentry", "y_time": 1392695507.356714, "z_msg": "...."}
INFO:   MainThread: _parse:     my_resolve after 4.9784979820251465 seconds and 29 vs 8 attempts
MY_INFO:    MainThread: _parse:     my_success for cmd "trig" =>> "not ready". COM12.ISREADY now set to True
INFO:   MainThread: …
Run Code Online (Sandbox Code Playgroud)

python logging string-formatting

3
推荐指数
1
解决办法
1333
查看次数