You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Ident is an arbitrary string Logopt is an atom or array of atom, you can use a number if you're brave enough :
pid
cons
odelay
ndelay
perror
Facility is an atom :
kern
user
mail
daemon
auth
syslog
lpr
news
uucp
cron
authpriv
ftp
netinfo
remoteauth
install
ras
local0
local1
local2
local3
local4
local5
local6
local7
Theopen call returns either{ok, Log} whereLog is a syslog handlethat can be passed to subsequentlog andclose calls, or it will throw{error, badarg}.
syslog:log(Log, Priority, Message) -> ok
Log is a syslog handle returned fromopen Priority can be a number or better, an atom :
emerg
alert
crit
err
warning
notice
info
debug
Message is a string.
syslog:log(Log, Priority, FormatMsg, FormatArgs) -> ok
Same as above, but allows for the construction of log messages similar toformatting strings viaio_lib:format/2, whereFormatMsg indicates theformatting instructions andFormatArgs is a list of arguments to beformatted.
syslog:close(Log) -> ok
Log is a syslog handle returned fromopen
BUGS
None known
About
Erlang port driver for interacting with syslog via syslog(3)