diff --git a/flatisfy/cmds.py b/flatisfy/cmds.py index 89af785..240ac45 100644 --- a/flatisfy/cmds.py +++ b/flatisfy/cmds.py @@ -252,4 +252,5 @@ def serve(config): # standard logging server = web_app.QuietWSGIRefServer - app.run(host=config["host"], port=config["port"], server=server) + print("Launching web viewer running on http://%s:%s" % (config["host"], config["port"])) + app.run(host=config["host"], port=config["port"], server=server) \ No newline at end of file