python3log
发布时间: 2024-11-16 22:41:34
1. python里的logging怎么写多个文件
an example:
#coding:utf-8
#filename:cfg/logger.yml
version:1
formatters:
simple:
format:'%(asctime)s-%(name)s-%(levelname)s-%(message)s'
consolefmt:
format:'%(name)s-%(levelname)s-%(message)s'
handlers:
console:
class:logging.StreamHandler
formatter:consolefmt
level:WARNING
stream:ext://sys.stdout
ownerloggerfile:
class:logging.handlers.RotatingFileHandler
formatter:simple
level:INFO
filename:log/billingcodeowner.log
maxBytes:1048576
backupCount:3
phnloggerfile:
class:logging.handlers.RotatingFileHandler
formatter:simple
level:INFO
filename:log/phnparser.log
maxBytes:1048576
backupCount:3
loggers:
billingcodeowner:
level:DEBUG
handlers:[ownerloggerfile]
propagate:no
phoneparser:
level:DEBUG
handlers:[console,phnloggerfile]
propagate:no
root:
level:DEBUG
handlers:[console,phnloggerfile]
usage in python application:
importlogging
importlogging.config
importcodecs
importyaml
logging.config.dictConfig(codecs.open("cfg/logger.yml",'r','utf-8').read())
logger=logging.getLogger("billingcodeowner")
2. 计算机如何计算log对数值
计算机计算对数(logarithm)通常使用的是数学库函数,例如在Python中,可以使用math库中的log函数。
对于计算以10为底的对数,可以使用math库中的log10函数。例如,要计算100的以10为底的对数,可以使用以下代码:
import math
log_value = math.log10(100)
print(log_value)
输出结果为:2.302585092994046
如果要计算以自然常数e为底的对数,可以使用math库中的log函数,并将底数设置为e。例如,要计算100的以e为底的对数,可以使用以下代码:
import math
log_value = math.log(100)
print(log_value)
输出结果为:4.605277977505166
计算机计算对数的基本原理是使用指数运算的反运算。对于以10为底的对数,计算机会使用指数运算符(^)计算10的几次幂等于给定的数值,然后使用反函数计算这个幂的值。对于以e为底的对数,计算机使用自然常数e的幂等于给定值。
热点内容