diff options
Diffstat (limited to 'src/Graylog/UDP.hs')
-rw-r--r-- | src/Graylog/UDP.hs | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/src/Graylog/UDP.hs b/src/Graylog/UDP.hs index 6aec108..00b6a12 100644 --- a/src/Graylog/UDP.hs +++ b/src/Graylog/UDP.hs | |||
@@ -2,18 +2,12 @@ module Graylog.UDP | |||
2 | ( Graylog (..) | 2 | ( Graylog (..) |
3 | , sendLog | 3 | , sendLog |
4 | 4 | ||
5 | , module Graylog.Gelf | 5 | , module Export |
6 | ) where | 6 | ) where |
7 | 7 | ||
8 | import Network.Socket | 8 | import Graylog.Gelf as Export |
9 | 9 | import Graylog.Types as Export | |
10 | import Graylog.Gelf | ||
11 | |||
12 | data Graylog | ||
13 | = Graylog | ||
14 | { _graylogHost :: String | ||
15 | , _graylogPort :: String | ||
16 | } | ||
17 | 10 | ||
18 | sendLog :: Graylog -> GELF -> IO () | 11 | sendLog :: Graylog -> GELF -> IO () |
19 | sendLog glog msg = undefined | 12 | sendLog glog msg = undefined |
13 | |||