Skip to content

Commit cdc8446

Browse files
author
Joel Collins
committed
Always show server startup info
1 parent c6fe714 commit cdc8446

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

labthings/server/wsgi/gevent.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@ def run(
7070

7171
# Slightly more useful logger output
7272
friendlyhost = "localhost" if host == "0.0.0.0" else host
73-
logging.info("Starting LabThings WSGI Server")
74-
logging.info(f"Debug mode: {debug}")
75-
logging.info(f"Running on http://{friendlyhost}:{port} (Press CTRL+C to quit)")
73+
print("Starting LabThings WSGI Server")
74+
print(f"Debug mode: {debug}")
75+
print(f"Running on http://{friendlyhost}:{port} (Press CTRL+C to quit)")
7676

7777
# Create WSGIServer
7878
wsgi_server = gevent.pywsgi.WSGIServer(

0 commit comments

Comments
 (0)