Cut redundant log, it's already handled by the log on boot

This commit is contained in:
Firepup Sixfifty 2024-08-11 02:42:57 +00:00
parent 8714a1bec8
commit f5e4726c8e
Signed by: Firepup650
SSH key fingerprint: SHA256:U0Zp8EhEe3CMqFSrC79CqatzaEiL4sjta80/RSX2XrY

View file

@ -99,7 +99,6 @@ Examples:
elif arg in ["-r", "--random-port"]:
random.seed()
port = random.randint(10000, 60000)
log(f"Randomized port selected: {port}", "INFO")
else:
log(f"Unrecognized argument {arg}!", "WARN")
except Exception: