From b7724401451ae57e96a1be847dbdb267621b8037 Mon Sep 17 00:00:00 2001 From: Lucy Cifferello Date: Wed, 19 Aug 2020 13:27:40 -0600 Subject: [PATCH] log starting both web servers --- src/Application.hs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Application.hs b/src/Application.hs index ab50a72..104a77b 100644 --- a/src/Application.hs +++ b/src/Application.hs @@ -203,8 +203,9 @@ startWeb foundation = do where startWeb' app = do let AppSettings{..} = appSettings foundation - putStrLn @Text $ "Launching Web Server on port " <> show appPort + putStrLn @Text $ "Launching Tor Web Server on port " <> show torPort torAction <- async $ runSettings (warpSettings torPort foundation) app + putStrLn @Text $ "Launching Web Server on port " <> show appPort action <- async $ runTLS (tlsSettings sslCertLocation sslKeyLocation) (warpSettings appPort foundation) app