aboutsummaryrefslogtreecommitdiff
path: root/Logs.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2015-04-07 13:32:52 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2015-04-07 13:32:52 -0400
commitb2cb9c7f0f5b713fe9abdfe29eabf6bb82e7b2b1 (patch)
tree3b99ea5a0b085046a31bdb13d0454d105d887d4b /Logs.hs
parent136b9fa41d4e83b90714fc054aca92fa967315ae (diff)
parentd8394ede7b16d9aafcc19885f31d7935250a9bb6 (diff)
Merge branch 'master' into concurrentprogress
Diffstat (limited to 'Logs.hs')
-rw-r--r--Logs.hs7
1 files changed, 6 insertions, 1 deletions
diff --git a/Logs.hs b/Logs.hs
index 1f8cf9f9c..252b5814d 100644
--- a/Logs.hs
+++ b/Logs.hs
@@ -1,6 +1,6 @@
{- git-annex log file names
-
- - Copyright 2013-2014 Joey Hess <id@joeyh.name>
+ - Copyright 2013-2015 Joey Hess <id@joeyh.name>
-
- Licensed under the GNU GPL version 3 or higher.
-}
@@ -40,6 +40,7 @@ topLevelUUIDBasedLogs =
, preferredContentLog
, requiredContentLog
, scheduleLog
+ , activityLog
, differenceLog
]
@@ -84,9 +85,13 @@ groupPreferredContentLog = "group-preferred-content.log"
scheduleLog :: FilePath
scheduleLog = "schedule.log"
+activityLog :: FilePath
+activityLog = "activity.log"
+
differenceLog :: FilePath
differenceLog = "difference.log"
+
{- The pathname of the location log file for a given key. -}
locationLogFile :: GitConfig -> Key -> String
locationLogFile config key = branchHashDir config key </> keyFile key ++ ".log"