From b06c96c04c91a4aaa63d2625c6be00d8f0ccdb05 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Wed, 1 May 2013 07:24:42 -0700 Subject: [PATCH] web: be less verbose about web files source, mention it only in dev mode --- hledger-web/Settings/StaticFiles.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hledger-web/Settings/StaticFiles.hs b/hledger-web/Settings/StaticFiles.hs index 467dc69e2..047eea8f9 100644 --- a/hledger-web/Settings/StaticFiles.hs +++ b/hledger-web/Settings/StaticFiles.hs @@ -23,10 +23,10 @@ staticSite :: IO Static.Static staticSite = if development then (do - putStrLn ("using web files from: " ++ staticDir ++ "/") >> hFlush stdout + putStrLn ("Using web files from: " ++ staticDir ++ "/") >> hFlush stdout Static.staticDevel staticDir) else (do - putStrLn "using built-in web files" >> hFlush stdout + -- putStrLn "Using built-in web files" >> hFlush stdout return $(Static.embed staticDir)) $(publicFiles staticDir)