now that a uuid is used, don't need to rejoin

This commit is contained in:
Joey Hess 2010-10-12 18:31:02 -04:00
parent 3b89924f53
commit 476f66abb9

View file

@ -70,7 +70,7 @@ instance Read LogLine where
w = words string
date = w !! 0
status = read $ w !! 1
uuid = unwords $ drop 2 w
uuid = w !! 3
pdate = (parseTime defaultTimeLocale "%s%Qs" date) :: Maybe UTCTime
good v = ret $ LogLine (utcTimeToPOSIXSeconds v) status uuid