diff --git a/gipeda.cabal b/gipeda.cabal
--- a/gipeda.cabal
+++ b/gipeda.cabal
@@ -1,5 +1,5 @@
 name:                gipeda
-version:             0.3.0.1
+version:             0.3.1
 category:            Development
 synopsis:            Git Performance Dashboard
 description:
diff --git a/src/Shake.hs b/src/Shake.hs
--- a/src/Shake.hs
+++ b/src/Shake.hs
@@ -164,6 +164,11 @@
                 cmd "./install-jslibs.sh"
     want ["install-jslibs.sh"]
 
+    "site/out/backlog.txt" %> \ out -> do
+        hashes <- gitRange
+        withoutLogs <- filterM ((not <$>) . doesLogExist logSource) hashes
+        writeFileChanged out (unlines withoutLogs)
+    want ["site/out/backlog.txt"]
 
     "site/out/head.txt" %> \ out -> do
         alwaysRerun
