当前位置: 技术问答>linux和unix
syslog函数无法写入日志信息
来源: 互联网 发布时间:2016-12-07
本文导语: 我用syslog函数写入日志,但是messages文件里面始终看不到我写入的日志信息,请问这是怎么回事啊? 这是我的源代码 #include #include #include int main() { FILE *f; f = fopen("not_here","r"); if(!f) ...
我用syslog函数写入日志,但是messages文件里面始终看不到我写入的日志信息,请问这是怎么回事啊?
这是我的源代码
系统是ubuntu 10.04
这是我的源代码
#include
#include
#include
int main()
{
FILE *f;
f = fopen("not_here","r");
if(!f)
syslog(LOG_ERR|LOG_USER,"oops - %mn");
exit(0);
}
系统是ubuntu 10.04
|
是否弄错文件了
# tail /var/log/syslog
Jun 8 16:00:14 ken-laptop log: oops - No such file or directory--
# tail /var/log/syslog
Jun 8 16:00:14 ken-laptop log: oops - No such file or directory--
|
fc,rehl是/var/log/messages