🔊 better logging
All checks were successful
ci / docker (push) Successful in 6m4s
Python formatting PEP8 / Python-PEP8 (push) Successful in 16s

This commit is contained in:
Finn Christiansen 2024-09-21 12:38:46 +02:00
parent 04757a3f6a
commit e4893a22c2

View file

@ -105,9 +105,9 @@ The link will be valid for 7 days.""".format(os.getenv("REGISTRATION_URL") + res
# Send the email
server.sendmail(sender_email, receiver_email, msg.as_string())
print("Email sent successfully")
logging.info("Email sent successfully")
except Exception as e:
print(f"Error: {e}")
logging.error("Error sending mail: {}".format(e))
finally:
# Close the connection
server.quit()
@ -118,7 +118,7 @@ while True:
bot.run()
except ServerDisconnectedError:
time.sleep(5)
print("connection lost, reconnecting in 5 seconds...")
logging.info("connection lost, reconnecting in 5 seconds...")
except KeyboardInterrupt:
print("exiting...")
logging.info("exiting...")
sys.exit(0)