Skip to content

Commit 62a67ca

Browse files
committed
BugFix #258
1 parent 0ff4eca commit 62a67ca

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

remi/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -799,11 +799,11 @@ def start(self):
799799
self._pending_messages_queue_length, self._title,
800800
self, self._certfile, self._keyfile, self._ssl_version, *self._userdata)
801801
shost, sport = self._sserver.socket.getsockname()[:2]
802+
self._log.info('Started httpserver http://%s:%s/'%(shost,sport))
802803
# when listening on multiple net interfaces the browsers connects to localhost
803804
if shost == '0.0.0.0':
804805
shost = '127.0.0.1'
805806
self._base_address = 'http://%s:%s/' % (shost,sport)
806-
self._log.info('Started httpserver %s' % self._base_address)
807807
if self._start_browser:
808808
try:
809809
import android

0 commit comments

Comments
 (0)