classFileHandler(StreamHandler): """ A handler class which writes formatted logging records to disk files. """ def__init__(self, filename, mode='a', encoding=None, delay=False): """ Open the specified file and use it as the stream for logging. """ # Issue #27493: add support for Path objects to be passed in filename = os.fspath(filename) #keep the absolute path, otherwise derived classes which use this #may come a cropper when the current directory changes self.baseFilename = os.path.abspath(filename) self.mode = mode self.encoding = encoding self.delay = delay
如何才能传入参数filename?
①进入dictConfig()
1 2 3
defdictConfig(config): """Configure logging using a dictionary.""" dictConfigClass(config).configure()
②进入configure(),找到对handler的处理逻辑,如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
# 前面的代码省略 # 获取handlers handlers = config.get('handlers', EMPTY_DICT) deferred = [] # 遍历其中的每一个handler for name insorted(handlers): try: # 具体处理每一个handler handler = self.configure_handler(handlers[name]) handler.name = name handlers[name] = handler except Exception as e: if'target not configured yet'instr(e.__cause__): deferred.append(name) else: raise ValueError('Unable to configure handler ' '%r' % name) from e # 后面的代码省略