Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZEO
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
ZEO
Commits
80e68aea
Commit
80e68aea
authored
Nov 22, 2002
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Log the "listening on <address>" message at INFO level.
parent
6c0ddfb8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
src/ZEO/zrpc/server.py
src/ZEO/zrpc/server.py
+2
-1
No files found.
src/ZEO/zrpc/server.py
View file @
80e68aea
...
@@ -17,6 +17,7 @@ import types
...
@@ -17,6 +17,7 @@ import types
from
ZEO.zrpc.connection
import
Connection
,
Delay
from
ZEO.zrpc.connection
import
Connection
,
Delay
from
ZEO.zrpc.log
import
log
from
ZEO.zrpc.log
import
log
import
zLOG
# Export the main asyncore loop
# Export the main asyncore loop
loop
=
asyncore
.
loop
loop
=
asyncore
.
loop
...
@@ -42,7 +43,7 @@ class Dispatcher(asyncore.dispatcher):
...
@@ -42,7 +43,7 @@ class Dispatcher(asyncore.dispatcher):
else
:
else
:
self
.
create_socket
(
socket
.
AF_UNIX
,
socket
.
SOCK_STREAM
)
self
.
create_socket
(
socket
.
AF_UNIX
,
socket
.
SOCK_STREAM
)
self
.
set_reuse_addr
()
self
.
set_reuse_addr
()
log
(
"listening on %s"
%
str
(
self
.
addr
))
log
(
"listening on %s"
%
str
(
self
.
addr
)
,
zLOG
.
INFO
)
self
.
bind
(
self
.
addr
)
self
.
bind
(
self
.
addr
)
self
.
listen
(
5
)
self
.
listen
(
5
)
...
...
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