1 Star 0 Fork 68

maminjie/openeuler-os-build

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
log.py 1.28 KB
一键复制 编辑 原始数据 按行查看 历史
BigSkySea 提交于 2020-12-28 17:24 . init code
#!/usr/bin/env python
# -*- coding=utf-8 -*-
# init log file,two ways for log,one is log file other one is console output
# Author: yhon
# Copyright Huawei Technologies Co., Ltd. 2010-2018. All rights reserved.
"""
log
"""
import logging
import os.path
import time
CUR_DIR = os.path.dirname(os.path.realpath(__file__))
def log_init():
"""
init log handle
"""
log = logging.getLogger()
log.setLevel(logging.INFO)
# set log file location,the file on the output dir
log_path = os.path.join(os.path.join(CUR_DIR, ".."), "output")
if not os.path.exists(log_path):
os.makedirs(log_path)
# set log format
formatter = logging.Formatter("%(asctime)s - %(filename)s[line:%(lineno)d] - %(levelname)s: %(message)s")
# if log file path exist, init log file handler
if os.path.exists(log_path):
rq = time.strftime('build', time.localtime(time.time()))
logfile = os.path.join(log_path, "{0}.log".format(rq))
# set file handler
fh = logging.FileHandler(logfile, mode='w')
fh.setLevel(logging.DEBUG)
fh.setFormatter(formatter)
log.addHandler(fh)
# set console output handler
ch = logging.StreamHandler()
ch.setLevel(logging.INFO)
ch.setFormatter(formatter)
log.addHandler(ch)
return log
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/maminjie/openeuler-os-build.git
git@gitee.com:maminjie/openeuler-os-build.git
maminjie
openeuler-os-build
openeuler-os-build
develop

搜索帮助

D67c1975 1850385 1daf7b77 1850385