Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
0c582f42
Commit
0c582f42
authored
Jun 18, 2001
by
Andreas Jung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Collector #2316: introduced env. var ZSYSLOG_FACILITY to
override the default syslog facility "user"
parent
c717f22c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
0 deletions
+7
-0
doc/CHANGES.txt
doc/CHANGES.txt
+3
-0
z2.py
z2.py
+4
-0
No files found.
doc/CHANGES.txt
View file @
0c582f42
...
...
@@ -11,6 +11,9 @@ Zope Changes
- Made the meta-type in the upper-left corner of ZClass instances'
management interface into a link to the ZClass definition.
- Collector #2316: introduced new environment variable ZSYSLOG_FACILITY
to override the default syslog facility 'user'
Bugs fixed
- Corrections to the code that adds interface information to the
...
...
z2.py
View file @
0c582f42
...
...
@@ -604,6 +604,10 @@ try:
lg
=
logger
.
file_logger
(
'-'
)
# log to stdout
elif
os
.
environ
.
has_key
(
'ZSYSLOG'
):
lg
=
logger
.
syslog_logger
(
os
.
environ
[
'ZSYSLOG'
])
if
os
.
environ
.
has_key
(
"ZSYSLOG_FACILITY"
):
lg
=
logger
.
syslog_logger
(
os
.
environ
[
'ZSYSLOG'
],
facility
=
os
.
environ
[
'ZSYSLOG_FACILITY'
])
else
:
lg
=
logger
.
syslog_logger
(
os
.
environ
[
'ZSYSLOG'
])
elif
os
.
environ
.
has_key
(
'ZSYSLOG_SERVER'
):
(
addr
,
port
)
=
string
.
split
(
os
.
environ
[
'ZSYSLOG_SERVER'
],
':'
)
lg
=
logger
.
syslog_logger
((
addr
,
int
(
port
)))
...
...
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