python logging采坑与argparse存储bool类型失效。

【python logging采坑与argparse存储bool类型失效。】python logging四大组件:日志器(Logger)、处理器(Handler)、过滤器(Filter)、格式器(Formatter,其中logger是入口,真正干活儿的是handler,处理器(handler)还可以通过过滤器(filter)和格式器(formatter)对要输出的日志内容做过滤和格式化等处理操作。
logging 不同文件重复输出
logging.getLogger()中当没有传递名称时,则是同一个实例!!。所以解决此问题只需要传递name,即调用logging.getLogger(name),name的形式可以为foo.bar.baz

Multiple calls to getLogger() with the same name will always return a reference to the same Logger object
logging 控制台输出失效
因为不配置的话,logging采用默认配置。即,输出级别WARNNING,通过logging.basicConf()在开始时配置,或者使用logger.setLevel()来配置.
logging的常用模板如下
def config_log(filename): fh = logging.FileHandler('{}.log'.format(filename), mode='a', encoding='utf-8') fh.setLevel(logging.DEBUG)# 显示调用,用于覆盖默认值WARNING ch = logging.StreamHandler() ch.setLevel(logging.INFO) log = logging.getLogger(filename) log.setLevel(logging.DEBUG) fmt = "%(asctime)s {} %(message)s".format("-[line:%(lineno)s - %(funcName)10s() ]") fh_fmt=logging.Formatter(fmt=fmt,datefmt='%Y-%m-%d %H:%M:%S') fmt = "%(asctime)s {} %(message)s".format("") ch_fmt=logging.Formatter(fmt=fmt,datefmt='%Y-%m-%d %H:%M:%S')fh.setFormatter(fh_fmt) ch.setFormatter(ch_fmt)log.addHandler(fh) log.addHandler(ch)return log

argparse 的bool类型失效。
argparse想要表示bool类型,则需要使用store_true或者store_false,其中前面表示命令行出现该参数,则该参数为True,后者则相反。
例子如下:
parser.add_argument('--show_figure', default='False', action='store_true', help='show figure')

    推荐阅读