Remove 'INFO:' from a few log strings
This commit is contained in:
parent
23a018d341
commit
626dedf2f5
1 changed files with 4 additions and 4 deletions
|
|
@ -202,13 +202,13 @@ with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
|
||||||
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
||||||
s.bind((args.host, args.port))
|
s.bind((args.host, args.port))
|
||||||
s.listen(1)
|
s.listen(1)
|
||||||
logging.info('INFO: Listening on'+str((args.host, args.port)))
|
logging.info('Listening on'+str((args.host, args.port)))
|
||||||
while True:
|
while True:
|
||||||
conn, addr = s.accept()
|
conn, addr = s.accept()
|
||||||
logging.info('INFO: Connected to client on {}'.format(addr))
|
logging.info('Connected to client on {}'.format(addr))
|
||||||
connection = Connection(conn)
|
connection = Connection(conn)
|
||||||
proc = ServerProcessor(connection, online, min_chunk)
|
proc = ServerProcessor(connection, online, min_chunk)
|
||||||
proc.process()
|
proc.process()
|
||||||
conn.close()
|
conn.close()
|
||||||
logging.info('INFO: Connection to client closed')
|
logging.info('Connection to client closed')
|
||||||
logging.info('INFO: Connection closed, terminating.')
|
logging.info('Connection closed, terminating.')
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue