openlog()

openlog()函数用于设置日志消息的标识符和选项,通常在系统和服务程序中使用,它允许指定程序名作为标识,并通过不同的选项控制日志的输出方式,如发送到控制台、延迟打开连接等。


#include <syslog.h >

void openlog(const char *ident, intoption, int facility)

openlog():

openloglets us specify an ident that is added to each logmessage. This is normally thename of the program (cron, inetd, etc.)

openlog函数改变你的日志消息的呈现方式

 ident:

anident that is added to each logmessage

加在日志消息的最前面,通常是程序名,指示哪一个程序正在创建这条消息

option:

LOG_CONS-Ifthe log message can't be sent to syslogd via the UNIX domain datagram, themessage is written to the console instead.(如果消息无法记录到日志文件里则发送消息到控制台)    

LOG_NDELAY-Openthe UNIX domain datagram socket to the syslogddaemon immediately; don't wait untilthe first message is logged. Normally, the socket is not opened until the firstmessage is logged.

LOG_NOWAIT-Do not wait for child processesthat might have been created in the process of logging the message. Thisprevents conflicts with applications that catch SIGCHLD, since the application mighthave retrieved the child's status by the time that syslog calls wait.

LOG_ODELAY-Delay the open of theconnection to the syslogddaemon until the first message is logged.

LOG_PERROR-Write the log message tostandard error in additionto sending it to syslogd. (Unavailable on Solaris.)

LOG_PID-Log the process ID with eachmessage. This is intended for daemons that forka child process to handledifferent requests (as compared to daemons, such as syslogd, that never

callfork)

facility:

       LOG_AUTH-authorization programs: login, su, getty, ...

       LOG_AUTHPRIV-same as LOG_AUTH, but logged to file with restrictedpermissions

       LOG_CRON-cronand at

       LOG_DAEMON-system daemons: inetd, routed,...

       LOG_FTP-the FTP daemon (ftpd)

       LOG_KERN-messages generated by the kernel

       LOG_LOCAL0~LOG_LOCAL7- reserved for local use

       LOG_LPR-line printer system: lpd, lpc, ...

       LOG_MAIL-the mail system

       LOG_NEWS-the Usenet network news system

       LOG_SYSLOG-the syslogddaemon itself

       LOG_USER-messages from other user processes (default)

       LOG_UUCP-the UUCP system

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值