packages feed

ghcitui-0.1.0.0: lib/ghcitui-core/Ghcitui/Ghcid/LogConfig.hs

module Ghcitui.Ghcid.LogConfig where

-- | Determines how verbose logging should be.
newtype LogLevel = LogLevel Int deriving (Eq, Ord, Show)

-- | Determines where the daemon logs are written.
data LogOutput = LogOutputStdOut | LogOutputStdErr | LogOutputFile FilePath deriving (Show)