diff options
| author | Jasper Van der Jeugt <m@jaspervdj.be> | 2012-11-29 12:04:57 +0100 |
|---|---|---|
| committer | Jasper Van der Jeugt <m@jaspervdj.be> | 2012-11-29 12:04:57 +0100 |
| commit | a8182c9fc9379dff1e0dae1bc9a838a3c97c56c5 (patch) | |
| tree | da0a8c8e742b3ca0e434f0d80ec130642d3c2f37 /src/Hakyll/Core | |
| parent | 2caa185504ec697b96b7bf28dd9d15d489777abf (diff) | |
| download | hakyll-a8182c9fc9379dff1e0dae1bc9a838a3c97c56c5.tar.gz | |
Improve tag handling a bit
Diffstat (limited to 'src/Hakyll/Core')
| -rw-r--r-- | src/Hakyll/Core/Configuration.hs | 3 | ||||
| -rw-r--r-- | src/Hakyll/Core/Runtime.hs | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/Hakyll/Core/Configuration.hs b/src/Hakyll/Core/Configuration.hs index c859585..4d34114 100644 --- a/src/Hakyll/Core/Configuration.hs +++ b/src/Hakyll/Core/Configuration.hs @@ -1,7 +1,8 @@ -------------------------------------------------------------------------------- -- | Exports a datastructure for the top-level hakyll configuration module Hakyll.Core.Configuration - ( Configuration (..) + ( Verbosity (..) + , Configuration (..) , shouldIgnoreFile , defaultConfiguration ) where diff --git a/src/Hakyll/Core/Runtime.hs b/src/Hakyll/Core/Runtime.hs index 46c7d1e..99ba1a4 100644 --- a/src/Hakyll/Core/Runtime.hs +++ b/src/Hakyll/Core/Runtime.hs @@ -175,6 +175,7 @@ chase trail id' routes <- runtimeRoutes <$> ask store <- runtimeStore <$> ask config <- runtimeConfiguration <$> ask + Logger.debug logger $ "Processing " ++ show id' let compiler = todo M.! id' read' = CompilerRead |
