mirror of
https://github.com/QuentinFuxa/WhisperLiveKit.git
synced 2026-03-07 14:23:18 +00:00
Remove 'INFO:' from a few log strings
This commit is contained in:
@@ -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.bind((args.host, args.port))
|
||||
s.listen(1)
|
||||
logging.info('INFO: Listening on'+str((args.host, args.port)))
|
||||
logging.info('Listening on'+str((args.host, args.port)))
|
||||
while True:
|
||||
conn, addr = s.accept()
|
||||
logging.info('INFO: Connected to client on {}'.format(addr))
|
||||
logging.info('Connected to client on {}'.format(addr))
|
||||
connection = Connection(conn)
|
||||
proc = ServerProcessor(connection, online, min_chunk)
|
||||
proc.process()
|
||||
conn.close()
|
||||
logging.info('INFO: Connection to client closed')
|
||||
logging.info('INFO: Connection closed, terminating.')
|
||||
logging.info('Connection to client closed')
|
||||
logging.info('Connection closed, terminating.')
|
||||
|
||||
Reference in New Issue
Block a user