aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Graylog/UDP.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Graylog/UDP.hs')
-rw-r--r--src/Graylog/UDP.hs14
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
8import Network.Socket 8import Graylog.Gelf as Export
9 9import Graylog.Types as Export
10import Graylog.Gelf
11
12data Graylog
13 = Graylog
14 { _graylogHost :: String
15 , _graylogPort :: String
16 }
17 10
18sendLog :: Graylog -> GELF -> IO () 11sendLog :: Graylog -> GELF -> IO ()
19sendLog glog msg = undefined 12sendLog glog msg = undefined
13