This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module SyslogTypes where | |
| data Priority = | |
| DEBUG -- ^ Debug messages | |
| | INFO -- ^ Information | |
| | NOTICE -- ^ Normal runtime conditions | |
| | WARNING -- ^ General Warnings | |
| | ERROR -- ^ General Errors | |
| | CRITICAL -- ^ Severe situations | |
| | ALERT -- ^ Take immediate action |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {-# LANGUAGE OverloadedStrings #-} | |
| module ParsecRFC3164 | |
| ( | |
| parseRFC3164 | |
| , RFC3164 | |
| , PRI | |
| , Severity | |
| , Facility | |
| , Header |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {-# LANGUAGE OverloadedStrings #-} | |
| {-# LANGUAGE FlexibleContexts #-} | |
| {-# LANGUAGE ScopedTypeVariables #-} | |
| import Control.Monad.Trans.Class (lift) | |
| import Control.Monad.IO.Class | |
| import Control.Monad.Trans.Control () | |
| import Data.Conduit | |
| import Data.Conduit.Network | |
| import Data.Conduit.Attoparsec |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cabal install fast-tagsoup --extra-include=$(brew --prefix icu4c)/include --extra-lib-dirs=$(brew --prefix icu4c)/lib/ |
NewerOlder