forked from brett19/php-couchbase
-
Notifications
You must be signed in to change notification settings - Fork 39
/
log.c
78 lines (65 loc) · 2.14 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/**
* Copyright 2016-2019 Couchbase, Inc.
*
* 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 <libcouchbase/couchbase.h>
#include <php.h>
#include "log.h"
static const char *level_to_string(int severity)
{
switch (severity) {
case LCB_LOG_TRACE:
return "TRAC";
case LCB_LOG_DEBUG:
return "DEBG";
case LCB_LOG_INFO:
return "INFO";
case LCB_LOG_WARN:
return "WARN";
case LCB_LOG_ERROR:
return "EROR";
case LCB_LOG_FATAL:
return "FATL";
default:
return "";
}
}
#define PCBC_LOG_MSG_SIZE 1024
static void log_handler(const lcb_LOGGER *logger, uint64_t iid, const char *subsys, lcb_LOG_SEVERITY severity,
const char *srcfile, int srcline, const char *fmt, va_list ap)
{
struct pcbc_logger_st *pl = NULL;
lcb_logger_cookie(logger, (void **)&pl);
if (severity < pl->minlevel) {
return;
}
char buf[PCBC_LOG_MSG_SIZE] = {0};
pcbc_log_formatter(buf, PCBC_LOG_MSG_SIZE, level_to_string(severity), subsys, srcline, iid, NULL, 1, fmt, ap);
php_log_err(buf);
}
struct pcbc_logger_st pcbc_logger = {LCB_LOG_INFO, log_handler};
void pcbc_log(int severity, lcb_INSTANCE *instance, const char *subsys, const char *srcfile, int srcline,
const char *fmt, ...)
{
va_list ap;
char buf[PCBC_LOG_MSG_SIZE] = {0};
if (severity < pcbc_logger.minlevel) {
return;
}
va_start(ap, fmt);
pcbc_log_formatter(buf, PCBC_LOG_MSG_SIZE, level_to_string(severity), subsys, srcline, 0, (void *)instance, 0, fmt,
ap);
va_end(ap);
php_log_err(buf);
}