File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 92
92
def setup_links (args , socket ):
93
93
if args .bind :
94
94
for endpoint in args .bind :
95
- print ('binding to "{0}"' .format (endpoint ))
95
+ print ('binding to "{0}"' .format (endpoint ), file = sys . stderr )
96
96
socket .bind (endpoint )
97
97
addresses = []
98
98
if args .address :
99
99
addresses .append (args .address )
100
100
if args .connect :
101
101
addresses .extend (args .connect )
102
102
for endpoint in addresses :
103
- print ('connecting to "{0}"' .format (endpoint ))
103
+ print ('connecting to "{0}"' .format (endpoint ), file = sys . stderr )
104
104
socket .connect (endpoint )
105
105
106
106
@@ -122,7 +122,7 @@ def run_server(args):
122
122
if args .debug :
123
123
server .debug = True
124
124
setup_links (args , server )
125
- print ('serving "{0}"' .format (server_obj_path ))
125
+ print ('serving "{0}"' .format (server_obj_path ), file = sys . stderr )
126
126
return server .run ()
127
127
128
128
You can’t perform that action at this time.
0 commit comments