git-annex sim log

This commit is contained in:
Joey Hess 2024-09-17 13:43:11 -04:00
parent b85965cb3c
commit 02f0996e25
No known key found for this signature in database
GPG key ID: DB12DB0FF05F8F38
3 changed files with 21 additions and 11 deletions

View file

@ -67,7 +67,7 @@ data SimState t = SimState
, simRebalance :: Bool
, simHistory :: [SimCommand]
, simVectorClock :: VectorClock
, simFile :: Maybe FilePath
, simLogFile :: Maybe FilePath
, simRootDirectory :: FilePath
}
deriving (Show, Read)
@ -90,7 +90,7 @@ emptySimState rngseed rootdir = SimState
, simRebalance = False
, simHistory = []
, simVectorClock = VectorClock 0
, simFile = Nothing
, simLogFile = Nothing
, simRootDirectory = rootdir
}