diff options
author | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2011-04-13 21:19:18 +0200 |
---|---|---|
committer | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2011-04-13 21:19:18 +0200 |
commit | 131a49c0e713cf1e2848fd9f47aadf36d65e9175 (patch) | |
tree | 3dfbcea62528f7de6301c51dfa8bfdeded1fb69a /src/Hakyll/Core/Run.hs | |
parent | 35162f9433f7f1b654de5fba2d0f932064b38da3 (diff) | |
download | hakyll-131a49c0e713cf1e2848fd9f47aadf36d65e9175.tar.gz |
Remove debug output
Diffstat (limited to 'src/Hakyll/Core/Run.hs')
-rw-r--r-- | src/Hakyll/Core/Run.hs | 32 |
1 files changed, 2 insertions, 30 deletions
diff --git a/src/Hakyll/Core/Run.hs b/src/Hakyll/Core/Run.hs index d9d1cf7..b076cb0 100644 --- a/src/Hakyll/Core/Run.hs +++ b/src/Hakyll/Core/Run.hs @@ -28,7 +28,6 @@ import Hakyll.Core.Resource.Provider import Hakyll.Core.Resource.Provider.File import Hakyll.Core.Rules.Internal import Hakyll.Core.DirectedGraph -import Hakyll.Core.DirectedGraph.Dot import Hakyll.Core.DependencyAnalyzer import Hakyll.Core.Writable import Hakyll.Core.Store @@ -64,9 +63,6 @@ run configuration rules = do , hakyllStore = store } - -- DEBUG - report logger $ "Compilers: " ++ show (map fst compilers) - -- Run the program and fetch the resulting state ((), state') <- runStateT stateT $ RuntimeState { hakyllAnalyzer = makeDependencyAnalyzer mempty (const False) oldGraph @@ -98,17 +94,6 @@ newtype Runtime a = Runtime { unRuntime :: ReaderT RuntimeEnvironment (StateT RuntimeState IO) a } deriving (Functor, Applicative, Monad) --- | Return a set of modified identifiers --- -{- -modified :: ResourceProvider -- ^ Resource provider - -> Store -- ^ Store - -> [Identifier] -- ^ Identifiers to check - -> IO (Set Identifier) -- ^ Modified resources -modified provider store ids = fmap S.fromList $ flip filterM ids $ \id' -> - resourceModified provider (Resource id') store --} - -- | Add a number of compilers and continue using these compilers -- addNewCompilers :: [(Identifier, Compiler () CompileRule)] @@ -121,9 +106,6 @@ addNewCompilers newCompilers = Runtime $ do provider <- hakyllResourceProvider <$> ask store <- hakyllStore <$> ask - -- DEBUG - report logger $ "Adding: " ++ show (map fst newCompilers) - -- Old state information oldCompilers <- hakyllCompilers <$> get oldAnalyzer <- hakyllAnalyzer <$> get @@ -139,19 +121,9 @@ addNewCompilers newCompilers = Runtime $ do -- Create the dependency graph newGraph = fromList dependencies - -- DEBUG - report logger $ "Dependencies: " ++ show dependencies - liftIO $ writeFile "newGraph.dot" $ toDot show newGraph - - -- Check which items have been modified - modified <- fmap S.fromList $ flip filterM (map fst newCompilers) $ \id' -> do - m <- liftIO $ resourceModified provider store $ fromIdentifier id' - liftIO $ putStrLn $ show id' ++ " " ++ show m - return m - - -- DEBUG - report logger $ "Modified: " ++ show modified + modified <- fmap S.fromList $ flip filterM (map fst newCompilers) $ + liftIO . resourceModified provider store . fromIdentifier -- Create a new analyzer and append it to the currect one let newAnalyzer = makeDependencyAnalyzer newGraph (`S.member` modified) $ |