Formatting

This commit is contained in:
Firepup Sixfifty 2024-07-31 19:07:05 +00:00
parent 95e1c3f38d
commit d84aab7feb
Signed by: Firepup650
SSH key fingerprint: SHA256:U0Zp8EhEe3CMqFSrC79CqatzaEiL4sjta80/RSX2XrY
2 changed files with 11 additions and 2 deletions

View file

@ -33,7 +33,9 @@ def log(
)
else:
for line in message.split("\n"):
log = log + f"\r\n[{level}]{'['+origin+']' if origin else ''}[{time}] {line}"
log = (
log + f"\r\n[{level}]{'['+origin+']' if origin else ''}[{time}] {line}"
)
print(
f"[{level}]{'['+origin+']' if origin else ''}[{time}] {line}",
file=stream,

View file

@ -15,7 +15,13 @@ class Globals: ...
TimeoutErrors = (TimeoutError, asyncio.exceptions.TimeoutError)
DisconnectErrors = (ConnectionResetError, BrokenPipeError, IndexError, UnicodeDecodeError, *TimeoutErrors)
DisconnectErrors = (
ConnectionResetError,
BrokenPipeError,
IndexError,
UnicodeDecodeError,
*TimeoutErrors,
)
G = Globals()
G.uniqueClients = 0
G.servers = {}
@ -593,6 +599,7 @@ async def connectServer(hostname: str, port: int):
log(line, "ERROR")
raise FailedLinkError
async def runServer(address: str, port: int):
global G
server = await asyncio.start_server(handleClient, address, port)