blob: 7ffb63f5242de01b2366e769942edbc8a358f67a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
{- log files
-
- Copyright 2012 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Utility.LogFile where
import Common
import System.Posix
openLog :: FilePath -> IO Fd
openLog logfile = do
rotateLog logfile 0
openFd logfile WriteOnly (Just stdFileMode)
defaultFileFlags { append = True }
rotateLog :: FilePath -> Int -> IO ()
rotateLog logfile num
| num >= 10 = return ()
| otherwise = whenM (doesFileExist currfile) $ do
rotateLog logfile (num + 1)
renameFile currfile nextfile
where
currfile = filename num
nextfile = filename (num + 1)
filename n
| n == 0 = logfile
| otherwise = logfile ++ "." ++ show n
|