diff options
author | Joey Hess <joeyh@joeyh.name> | 2015-10-06 17:11:52 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2015-10-06 17:11:52 -0400 |
commit | 0dad31a69828cddbd5f402e6b18b1d70e8711a86 (patch) | |
tree | 01aaae1ab6d9d240a5ab03dda5860274825da00b /Logs | |
parent | 2c5f4a4f4783795907df66edeb1a57585f570feb (diff) |
analysis
Diffstat (limited to 'Logs')
-rw-r--r-- | Logs/PreferredContent.hs | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Logs/PreferredContent.hs b/Logs/PreferredContent.hs index c21d67010..1e631f86e 100644 --- a/Logs/PreferredContent.hs +++ b/Logs/PreferredContent.hs @@ -57,8 +57,13 @@ checkMap getmap mu notpresent mkey afile d = do u <- maybe getUUID return mu m <- getmap case M.lookup u m of - Nothing -> return d - Just matcher -> checkMatcher matcher mkey afile notpresent d + Nothing -> do + liftIO $ print ("default for", u, d) + return d + Just matcher -> do + r <- checkMatcher matcher mkey afile notpresent d + liftIO $ print ("checking for ", u, r) + return r preferredContentMap :: Annex (FileMatcherMap Annex) preferredContentMap = maybe (fst <$> preferredRequiredMapsLoad) return |