我想将logger语句的行号设置为彩色。据我发现,我必须为此编写一个全新的代码。有没有更短的方法可以使跟随记录器的行变成彩色?即更改%(lineno)d'
部分,以便终端在行号中具有颜色。谢谢。
logging.basicConfig(level=logging.DEBUG,
format='%(name)-12s %(funcName)s() %(message)s %(lineno)d')
logger = logging.getLogger(__name__)
[1] Python Colorlog not printing in the log files with colors