-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfunclog.c
More file actions
44 lines (37 loc) · 1.66 KB
/
funclog.c
File metadata and controls
44 lines (37 loc) · 1.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/****************************************************************************
* Copyright (C) 2017 by Chia-Ray Lin *
* *
* *
* This is a free software: you can redistribute it and/or modify it *
* under the terms of the GNU Lesser General Public License as published *
* by the Free Software Foundation, either version 3 of the License, or *
* (at your option) any later version. *
* *
* *
* You should have received a copy of the GNU Lesser General Public *
* License along with Box. If not, see <http://www.gnu.org/licenses/>. *
****************************************************************************/
#include "funclog.h"
#include <assert.h>
#include <stdarg.h>
#include <syslog.h>
void funclog (const char *format,... )
{
openlog(PROGRAM_NAME, LOG_CONS | LOG_PID, LOG_LOCAL1);
if(format==NULL){
return;
}
va_list args;
memset(&args,0,sizeof(va_list));
va_start(args, format);
if(CAPCAMfunclog_CODE == CONSOLE){
vprintf(format, args);//print information on console
}else if(CAPCAMfunclog_CODE == SYSLOG){
vsyslog(LOG_NOTICE, format, args);//print information on log file
}else if(CAPCAMfunclog_CODE == ALL_RECORD){
vsyslog(LOG_NOTICE, format, args);//print information on log file
vprintf(format, args);//print information on console
}
va_end(args);
closelog();
}