From 7f8948bba9d8c5562a9e626b91b2ad038622a3c8 Mon Sep 17 00:00:00 2001 From: Michachatz <121869403+Michatec@users.noreply.github.com> Date: Sun, 26 Apr 2026 15:37:30 +0200 Subject: [PATCH] Add print statement for serving connections --- main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/main.py b/main.py index 44bae3a..ea29986 100644 --- a/main.py +++ b/main.py @@ -220,5 +220,6 @@ def not_found(error): if __name__ == '__main__': try: serve(app, host="0.0.0.0", port=80, threads=12) + print("Serving connections from port 80....") except: app.run(debug=True, host="0.0.0.0", port=80)