mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-03 15:08:40 +00:00
Move some prints to log.info
This commit is contained in:
parent
ad2b771e5d
commit
3c09d38504
1 changed files with 3 additions and 3 deletions
|
@ -250,9 +250,9 @@ class DelugeWeb(component.Component):
|
||||||
SetConsoleCtrlHandler(win_handler)
|
SetConsoleCtrlHandler(win_handler)
|
||||||
|
|
||||||
def start(self):
|
def start(self):
|
||||||
print "%s %s." % (_("Starting server in PID"), os.getpid())
|
log.info("%s %s.", _("Starting server in PID"), os.getpid())
|
||||||
reactor.listenTCP(self.port, self.site)
|
reactor.listenTCP(self.port, self.site)
|
||||||
print "serving on %s:%s view at http://127.0.0.1:%s" % ("0.0.0.0",
|
log.info("serving on %s:%s view at http://127.0.0.1:%s", "0.0.0.0",
|
||||||
self.port, self.port)
|
self.port, self.port)
|
||||||
reactor.run()
|
reactor.run()
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue