SMTPServer.__init__(): Print the start information on the DEBUGSTREAM

so that it can be suppressed.
This commit is contained in:
Barry Warsaw 2001-10-05 17:10:31 +00:00
parent ef67ded6c7
commit 4a8e9f4e42
1 changed files with 2 additions and 1 deletions

View File

@ -282,7 +282,8 @@ class SMTPServer(asyncore.dispatcher):
self.socket.getsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR) | 1)
self.bind(localaddr)
self.listen(5)
print '%s started at %s\n\tLocal addr: %s\n\tRemote addr:%s' % (
print >> DEBUGSTREAM, \
'%s started at %s\n\tLocal addr: %s\n\tRemote addr:%s' % (
self.__class__.__name__, time.ctime(time.time()),
localaddr, remoteaddr)