-
Notifications
You must be signed in to change notification settings - Fork 22
/
log.c
52 lines (47 loc) · 1.53 KB
/
log.c
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
45
46
47
48
49
50
51
52
/**
* vnc2rdp: proxy for RDP client connect to VNC server
*
* Copyright 2014 Yiwei Li <[email protected]>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <stdarg.h>
#include <stdint.h>
#include <stdio.h>
#include <sys/types.h>
#include <time.h>
#include <unistd.h>
#include "log.h"
static const char *v2r_log_level_str[5] = {
"DEBUG", "INFO", "WARN", "ERROR", "FATAL"
};
void v2r_log(uint8_t level, const char *file, int line, const char *fmt, ...)
{
char log_data[V2R_LOG_MAX_LEN];
char *ptr = log_data;
time_t current_time = time(NULL);
struct tm t;
va_list ap;
/* 获取当前时间 */
localtime_r(¤t_time, &t);
/* 格式化日志头部 */
ptr += snprintf(log_data, sizeof(log_data),
"[%4d/%02d/%02d %02d:%02d:%02d] [%u] [%s] [%s:%d] ",
t.tm_year + 1900, t.tm_mon + 1, t.tm_mday, t.tm_hour, t.tm_min,
t.tm_sec, getpid(), v2r_log_level_str[level], file, line);
/* 添加日志信息 */
va_start(ap, fmt);
vsnprintf(ptr, sizeof(log_data) - (ptr - log_data), fmt, ap);
va_end(ap);
printf("%s\n", log_data);
}