Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
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
OpenEdx
ansible
Commits
4d5a98d8
Commit
4d5a98d8
authored
Jun 18, 2015
by
Brian Coca
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #11307 from dagwieers/patch-6
Change syslog (priority) level from LOG_NOTICE to LOG_INFO
parents
7bb2a7aa
4ca4d36a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lib/ansible/module_utils/basic.py
+2
-2
No files found.
lib/ansible/module_utils/basic.py
View file @
4d5a98d8
...
@@ -1161,10 +1161,10 @@ class AnsibleModule(object):
...
@@ -1161,10 +1161,10 @@ class AnsibleModule(object):
except
IOError
,
e
:
except
IOError
,
e
:
# fall back to syslog since logging to journal failed
# fall back to syslog since logging to journal failed
syslog
.
openlog
(
str
(
module
),
0
,
syslog
.
LOG_USER
)
syslog
.
openlog
(
str
(
module
),
0
,
syslog
.
LOG_USER
)
syslog
.
syslog
(
syslog
.
LOG_
NOTICE
,
msg
)
#1
syslog
.
syslog
(
syslog
.
LOG_
INFO
,
msg
)
#1
else
:
else
:
syslog
.
openlog
(
str
(
module
),
0
,
syslog
.
LOG_USER
)
syslog
.
openlog
(
str
(
module
),
0
,
syslog
.
LOG_USER
)
syslog
.
syslog
(
syslog
.
LOG_
NOTICE
,
msg
)
#2
syslog
.
syslog
(
syslog
.
LOG_
INFO
,
msg
)
#2
def
_set_cwd
(
self
):
def
_set_cwd
(
self
):
try
:
try
:
...
...
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