blob: 6aec108e111bdfe164e451e253d0886ef747a7d9 (
plain) (
tree)
|
|
module Graylog.UDP
( Graylog (..)
, sendLog
, module Graylog.Gelf
) where
import Network.Socket
import Graylog.Gelf
data Graylog
= Graylog
{ _graylogHost :: String
, _graylogPort :: String
}
sendLog :: Graylog -> GELF -> IO ()
sendLog glog msg = undefined
|