Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
zodb
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Joshua
zodb
Commits
a9e2200a
Commit
a9e2200a
authored
Apr 22, 2004
by
Fred Drake
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
EVENT_LOG_FILE and friends are no longer used; set up the default
logging directly
parent
749c44af
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
7 deletions
+6
-7
src/ZEO/runzeo.py
src/ZEO/runzeo.py
+6
-7
No files found.
src/ZEO/runzeo.py
View file @
a9e2200a
...
...
@@ -128,13 +128,12 @@ class ZEOServer:
def
setup_default_logging
(
self
):
if
self
.
options
.
config_logger
is
not
None
:
return
if
os
.
getenv
(
"EVENT_LOG_FILE"
)
is
not
None
:
return
if
os
.
getenv
(
"STUPID_LOG_FILE"
)
is
not
None
:
return
# No log file is configured; default to stderr. The logging
# level can still be controlled by {STUPID,EVENT}_LOG_SEVERITY.
os
.
environ
[
"EVENT_LOG_FILE"
]
=
""
# No log file is configured; default to stderr.
import
logging
logger
=
logging
.
getLogger
()
handler
=
logging
.
StreamHandler
()
handler
.
setLevel
(
logging
.
INFO
)
logger
.
addHandler
(
handler
)
def
check_socket
(
self
):
if
self
.
can_connect
(
self
.
options
.
family
,
self
.
options
.
address
):
...
...
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