Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
E
EasyTest
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
liangfenglong
EasyTest
Commits
0bad30db
Commit
0bad30db
authored
Apr 15, 2021
by
肖伟
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改依赖和日志设置
parent
973374a0
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
38 additions
and
36 deletions
+38
-36
settings.py
EasyTest/settings.py
+24
-23
views.py
base/views.py
+12
-12
pip-install.txt
pip-install.txt
+2
-1
No files found.
EasyTest/settings.py
View file @
0bad30db
...
@@ -215,23 +215,23 @@ LOGGING = {
...
@@ -215,23 +215,23 @@ LOGGING = {
# 默认记录所有日志
# 默认记录所有日志
'default'
:
{
'default'
:
{
'level'
:
'INFO'
,
'level'
:
'INFO'
,
'class'
:
'logging.handlers.RotatingFileHandler'
,
'class'
:
'logging.handlers.
Timed
RotatingFileHandler'
,
'filename'
:
os
.
path
.
join
(
log_path
,
'
all-{}.log'
.
format
(
time
.
strftime
(
'
%
Y-
%
m-
%
d'
))
),
'filename'
:
os
.
path
.
join
(
log_path
,
'
log.log'
),
'
maxBytes'
:
1024
*
1024
*
5
,
# 文件大小
'
when'
:
'D'
,
'
backupCount'
:
5
,
# 备份数
'
interval'
:
1
,
'formatter'
:
'standard'
,
# 输出格式
'formatter'
:
'standard'
,
# 输出格式
'encoding'
:
'utf-8'
,
# 设置默认编码
'encoding'
:
'utf-8'
,
# 设置默认编码
},
},
# 输出错误日志
# 输出错误日志
'error'
:
{
#
'error': {
'level'
:
'ERROR'
,
#
'level': 'ERROR',
'class'
:
'logging.handlers.RotatingFileHandler'
,
#
'class': 'logging.handlers.RotatingFileHandler',
'filename'
:
os
.
path
.
join
(
log_path
,
'error-{}.log'
.
format
(
time
.
strftime
(
'
%
Y-
%
m-
%
d'
))),
#
'filename': os.path.join(log_path, 'error-{}.log'.format(time.strftime('%Y-%m-%d'))),
'maxBytes'
:
1024
*
1024
*
5
,
# 文件大小
#
'maxBytes': 1024 * 1024 * 5, # 文件大小
'backupCount'
:
5
,
# 备份数
#
'backupCount': 5, # 备份数
'formatter'
:
'standard'
,
# 输出格式
#
'formatter': 'standard', # 输出格式
'encoding'
:
'utf-8'
,
# 设置默认编码
#
'encoding': 'utf-8', # 设置默认编码
},
#
},
# 控制台输出
# 控制台输出
'console'
:
{
'console'
:
{
'level'
:
'DEBUG'
,
'level'
:
'DEBUG'
,
...
@@ -239,15 +239,15 @@ LOGGING = {
...
@@ -239,15 +239,15 @@ LOGGING = {
'formatter'
:
'standard'
'formatter'
:
'standard'
},
},
# 输出info日志
# 输出info日志
'info'
:
{
#
'info': {
'level'
:
'INFO'
,
#
'level': 'INFO',
'class'
:
'logging.handlers.RotatingFileHandler'
,
#
'class': 'logging.handlers.RotatingFileHandler',
'filename'
:
os
.
path
.
join
(
log_path
,
'info-{}.log'
.
format
(
time
.
strftime
(
'
%
Y-
%
m-
%
d'
))),
#
'filename': os.path.join(log_path, 'info-{}.log'.format(time.strftime('%Y-%m-%d'))),
'maxBytes'
:
1024
*
1024
*
5
,
#
'maxBytes': 1024 * 1024 * 5,
'backupCount'
:
5
,
#
'backupCount': 5,
'formatter'
:
'standard'
,
#
'formatter': 'standard',
'encoding'
:
'utf-8'
,
# 设置默认编码
#
'encoding': 'utf-8', # 设置默认编码
},
#
},
},
},
# 配置用哪几种 handlers 来处理日志
# 配置用哪几种 handlers 来处理日志
'loggers'
:
{
'loggers'
:
{
...
@@ -259,7 +259,8 @@ LOGGING = {
...
@@ -259,7 +259,8 @@ LOGGING = {
},
},
# log 调用时需要当作参数传入
# log 调用时需要当作参数传入
'log'
:
{
'log'
:
{
'handlers'
:
[
'error'
,
'info'
,
'console'
,
'default'
],
# 'handlers': ['error', 'info', 'console', 'default'],
'handlers'
:
[
'console'
,
'default'
],
'level'
:
'INFO'
,
'level'
:
'INFO'
,
'propagate'
:
True
'propagate'
:
True
},
},
...
...
base/views.py
View file @
0bad30db
...
@@ -683,18 +683,18 @@ def case_logs(request):
...
@@ -683,18 +683,18 @@ def case_logs(request):
log_file_list
=
os
.
listdir
(
logs_path
)
log_file_list
=
os
.
listdir
(
logs_path
)
data_list
=
[]
data_list
=
[]
file_list
=
[]
file_list
=
[]
now
=
time
.
strftime
(
'
%
Y-
%
m-
%
d'
)
#
now = time.strftime('%Y-%m-%d')
for
file
in
log_file_list
:
#
for file in log_file_list:
if
'all'
in
file
and
now
in
file
:
#
if 'all' in file and now in file:
file_list
.
append
(
file
)
#
file_list.append(file)
if
not
file_list
:
#
if not file_list:
yesterday
=
datetime
.
today
()
+
timedelta
(
-
1
)
#
yesterday = datetime.today() + timedelta(-1)
yesterday_format
=
yesterday
.
strftime
(
'
%
Y_
%
m_
%
d'
)
#
yesterday_format = yesterday.strftime('%Y_%m_%d')
for
file
in
log_file_list
:
#
for file in log_file_list:
if
'all'
in
file
and
yesterday_format
in
file
:
#
if 'all' in file and yesterday_format in file:
file_list
.
apppend
(
file
)
#
file_list.apppend(file)
file_list
.
sort
()
#
file_list.sort()
log_file
=
os
.
path
.
join
(
logs_path
,
file_list
[
0
]
)
log_file
=
os
.
path
.
join
(
logs_path
,
'log.log'
)
with
open
(
log_file
,
'rb'
)
as
f
:
with
open
(
log_file
,
'rb'
)
as
f
:
off
=
-
1024
*
1024
off
=
-
1024
*
1024
if
f
.
tell
()
<
-
off
:
if
f
.
tell
()
<
-
off
:
...
...
pip-install.txt
View file @
0bad30db
...
@@ -23,7 +23,7 @@ importlib-metadata==1.7.0
...
@@ -23,7 +23,7 @@ importlib-metadata==1.7.0
kiwisolver==1.2.0
kiwisolver==1.2.0
kombu==3.0.37
kombu==3.0.37
Markdown==3.1.1
Markdown==3.1.1
matplotlib==3.
1.0
matplotlib==3.
4.1
Naked==0.1.31
Naked==0.1.31
numpy==1.19.2
numpy==1.19.2
Pillow==7.2.0
Pillow==7.2.0
...
@@ -45,3 +45,4 @@ text-unidecode==1.3
...
@@ -45,3 +45,4 @@ text-unidecode==1.3
urllib3==1.21.1
urllib3==1.21.1
vine==1.3.0
vine==1.3.0
zipp==3.1.0
zipp==3.1.0
dwebsocket==0.5.12
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment