Chinaunix首页 | 论坛 | 博客
  • 博客访问: 3520215
  • 博文数量: 864
  • 博客积分: 14125
  • 博客等级: 上将
  • 技术积分: 10634
  • 用 户 组: 普通用户
  • 注册时间: 2007-07-27 16:53
个人简介

https://github.com/zytc2009/BigTeam_learning

文章分类

全部博文(864)

文章存档

2023年(1)

2021年(1)

2019年(3)

2018年(1)

2017年(10)

2015年(3)

2014年(8)

2013年(3)

2012年(69)

2011年(103)

2010年(357)

2009年(283)

2008年(22)

分类: LINUX

2010-04-30 14:16:19


http://blog.chinaunix.net/u/22878/
openlog():opens a connection to the system logger for a program
syslog():generates a log message, which will be distributed  by  syslogd(8).
 

LOG_PID:Include PID with each message.
LOG_CONS:Write directly to system console if there is an error while sending to system logger.
LOG_ERR:error conditions
LOG_LOCAL0 through LOG_LOCAL7:reserved for local use
 
#include
int main()
{
 int test = 10;
 
 openlog("MySysLogTest", LOG_PID|LOG_CONS, LOG_LOCAL7);
 
 syslog(LOG_LOCAL7|LOG_ERR, "ERROR: just my test error msg syslog(test val=%d)\n", test);
 closelog();
 return 0;
}
 
这个小程序执行完后
/var/log/boot.log:Nov 16 11:18:08 localhost MySysLogTest[2804]: ERROR: just my test error msg syslog(test val=10)
/var/log/messages:Nov 16 11:18:08 localhost MySysLogTest[2804]: ERROR: just my test error msg syslog(test val=10)
阅读(1380) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~