Copyright © 2016-2017 Michael Truog
Version: 1.7.1 May 31 2017 13:42:23 ------------------------------------------------------------------------
Behaviours: gen_server.
Authors: Michael Truog (mjtruog [at] gmail (dot) com).
app_name() = nonempty_string()
facility() = kernel | user | mail | daemon | auth0 | syslog | print | news | uucp | clock0 | auth1 | ftp | ntp | auth2 | auth3 | clock1 | local0 | local1 | local2 | local3 | local4 | local5 | local6 | local7 | non_neg_integer() | auth | authpriv | cron | kern | lpr | security
message_id() = string() | binary()
options() = [{transport, transport()} | {transport_options, list()} | {protocol, protocol()} | {utf8, boolean()} | {facility, facility()} | {app_name, app_name()} | {path, nonempty_string()} | {host, inet:ip_address() | inet:hostname()} | {port, undefined | inet:port_number()} | {timeout, timeout_milliseconds()}]
protocol() = rfc3164 | rfc5424
severity() = emergency | alert | critical | error | warning | notice | informational | debug | 0..7 | emerg | panic | crit | err | warn | info
timeout_milliseconds() = 1..4294967295
transport() = local | udp | tcp | tls
code_change(X1, State, X3) -> any()
facility(Facility::facility()) -> non_neg_integer()
facility_valid(Facility::facility()) -> boolean()
handle_call(Request, X2, State) -> any()
handle_cast(Request, State) -> any()
handle_info(Request, State) -> any()
init(X1) -> any()
send(Pid::pid(), Severity::severity(), Data::iodata()) -> ok
send(Pid::pid(), Severity::severity(), Timestamp::undefined | erlang:timestamp(), Data::iodata()) -> ok
send(Pid::pid(), Severity::severity(), Timestamp::undefined | erlang:timestamp(), MessageId::message_id(), Data::iodata()) -> ok
severity(Severity::severity()) -> non_neg_integer()
severity_valid(Severity::severity()) -> boolean()
start_link(Options::options()) -> {ok, pid()} | {error, any()}
stop_link(Pid::pid()) -> ok
stop_link(Pid::pid(), Timeout::timeout_milliseconds()) -> ok
terminate(X1, State) -> any()
Generated by EDoc