Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
J
jumpserver
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
ops
jumpserver
Commits
b2717133
Commit
b2717133
authored
Jan 17, 2019
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] 修改日志目录
parent
2a0e68c5
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
+10
-2
settings.py
apps/jumpserver/settings.py
+10
-2
No files found.
apps/jumpserver/settings.py
View file @
b2717133
...
...
@@ -12,6 +12,7 @@ https://docs.djangoproject.com/en/1.10/ref/settings/
import
os
import
sys
import
socket
import
ldap
# from django_auth_ldap.config import LDAPSearch, LDAPSearchUnion
...
...
@@ -23,6 +24,13 @@ from .conf import load_user_config
BASE_DIR
=
os
.
path
.
dirname
(
os
.
path
.
dirname
(
os
.
path
.
abspath
(
__file__
)))
PROJECT_DIR
=
os
.
path
.
dirname
(
BASE_DIR
)
CONFIG
=
load_user_config
()
LOG_DIR
=
os
.
path
.
join
(
PROJECT_DIR
,
'logs'
)
HOSTNAME
=
socket
.
gethostname
()
JUMPSERVER_LOG_FILE
=
os
.
path
.
join
(
LOG_DIR
,
'jumpserver-{}.log'
.
format
(
HOSTNAME
))
ANSIBLE_LOG_FILE
=
os
.
path
.
join
(
LOG_DIR
,
'ansible-{}.log'
.
format
(
HOSTNAME
))
if
not
os
.
path
.
isdir
(
LOG_DIR
):
os
.
makedirs
(
LOG_DIR
)
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/1.10/howto/deployment/checklist/
...
...
@@ -216,14 +224,14 @@ LOGGING = {
'interval'
:
1
,
"backupCount"
:
7
,
'formatter'
:
'main'
,
'filename'
:
os
.
path
.
join
(
PROJECT_DIR
,
'logs'
,
'jumpserver.log'
)
,
'filename'
:
JUMPSERVER_LOG_FILE
,
},
'ansible_logs'
:
{
'encoding'
:
'utf8'
,
'level'
:
'DEBUG'
,
'class'
:
'logging.FileHandler'
,
'formatter'
:
'main'
,
'filename'
:
os
.
path
.
join
(
PROJECT_DIR
,
'logs'
,
'ansible.log'
)
,
'filename'
:
ANSIBLE_LOG_FILE
,
},
},
'loggers'
:
{
...
...
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