1 Star 0 Fork 0

01wrp/00apiTestP2P

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
app.py 1.16 KB
一键复制 编辑 原始数据 按行查看 历史
wrp 提交于 2023-03-18 20:57 . Initial commit
import logging
from logging import handlers
import os,time
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
BASE_URL = "http://user-p2p-test.itheima.net"
MOBILE_URL = "http://mobile-p2p-test.itheima.net"
DB_URL = '52.83.144.39'
DB_USERNAME = 'root'
DB_PASSWORD = 'Itcast_p2p_20191228'
DB_MEMBER = 'czbk_member'
DB_FINANCE = 'czbk_finance'
#初始化日志配置
def init_log_config():
#1、初始化日志对象
logger = logging.getLogger()
#2、设置日志级别
logger.setLevel(logging.INFO)
#3、创建控制台日志处理器和文件日志处理器
sh = logging.StreamHandler()
logfile = BASE_DIR + os.sep + "log" + os.sep + "p2p.log"
fh = logging.handlers.TimedRotatingFileHandler(logfile,when='M',interval=5,backupCount=5,encoding='UTF-8')
#4、设置日志格式,创建格式化器
fmt = '%(asctime)s %(levelname)s [%(name)s] [%(filename)s(%(funcName)s:%(lineno)d)] - %(message)s'
formatter = logging.Formatter(fmt)
#5、将格式化器设置到日志器中
sh.setFormatter(formatter)
fh.setFormatter(formatter)
#6、将日志处理器添加到日志对象
logger.addHandler(sh)
logger.addHandler(fh)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/WRP1234/00apiTestP2P.git
git@gitee.com:WRP1234/00apiTestP2P.git
WRP1234
00apiTestP2P
00apiTestP2P
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385