diff --git a/basicswap/bin/run.py b/basicswap/bin/run.py index 8b37e0b..12f3f10 100755 --- a/basicswap/bin/run.py +++ b/basicswap/bin/run.py @@ -625,7 +625,7 @@ def runClient( swap_client.start() if "htmlhost" in settings: swap_client.log.info( - "Starting http server at http://%s:%d." + "Starting http server at http://%s:%d" % (settings["htmlhost"], settings["htmlport"]) ) allow_cors = ( @@ -644,7 +644,7 @@ def runClient( if "wshost" in settings: ws_url = "ws://{}:{}".format(settings["wshost"], settings["wsport"]) - swap_client.log.info(f"Starting ws server at {ws_url}.") + swap_client.log.info(f"Starting ws server at {ws_url}") swap_client.ws_server = WebsocketServer( host=settings["wshost"], port=settings["wsport"]