public inbox for passt-dev@passt.top
 help / color / mirror / code / Atom feed
blob bdeffdeacd37a05162d1d9f1521df6e82a335880 1816 bytes (raw)

 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
 
/* SPDX-License-Identifier: GPL-2.0-or-later
 * Copyright (c) 2022 Red Hat GmbH
 * Author: Stefano Brivio <sbrivio@redhat.com>
 */

#ifndef LOG_H
#define LOG_H

#include <stdbool.h>
#include <syslog.h>

#define LOGFILE_SIZE_DEFAULT		(1024 * 1024UL)
#define LOGFILE_CUT_RATIO		30	/* When full, cut ~30% size */
#define LOGFILE_SIZE_MIN		(5UL * MAX(BUFSIZ, PAGE_SIZE))

void vlogmsg(int pri, const char *format, va_list ap);
void logmsg(int pri, const char *format, ...)
	__attribute__((format(printf, 2, 3)));
void logmsg_perror(int pri, const char *format, ...)
	__attribute__((format(printf, 2, 3)));

#define err(...)		logmsg(		LOG_ERR,	__VA_ARGS__)
#define warn(...)		logmsg(		LOG_WARNING,	__VA_ARGS__)
#define info(...)		logmsg(		LOG_INFO,	__VA_ARGS__)
#define debug(...)		logmsg(		LOG_DEBUG,	__VA_ARGS__)

#define err_perror(...)		logmsg_perror(	LOG_ERR,	__VA_ARGS__)
#define warn_perror(...)	logmsg_perror(	LOG_WARNING,	__VA_ARGS__)
#define info_perror(...)	logmsg_perror(	LOG_INFO,	__VA_ARGS__)
#define debug_perror(...)	logmsg_perror(	LOG_DEBUG,	__VA_ARGS__)

#define die(...)							\
	do {								\
		err(__VA_ARGS__);					\
		exit(EXIT_FAILURE);					\
	} while (0)

#define die_perror(...)							\
	do {								\
		err_perror(__VA_ARGS__);				\
		exit(EXIT_FAILURE);					\
	} while (0)

extern int log_trace;
extern bool log_conf_parsed;
extern bool log_daemon_ready;

void trace_init(int enable);
#define trace(...)							\
	do {								\
		if (log_trace)						\
			debug(__VA_ARGS__);				\
	} while (0)

void __openlog(const char *ident, int option, int facility);
void logfile_init(const char *name, const char *path, size_t size);
void passt_vsyslog(int pri, const char *format, va_list ap);
void logfile_write(int pri, const char *format, va_list ap);
void __setlogmask(int mask);

#endif /* LOG_H */

debug log:

solving bdeffde ...
found bdeffde in https://archives.passt.top/passt-dev/20240618071427.1544869-5-sbrivio@redhat.com/ ||
	https://archives.passt.top/passt-dev/20240619194028.2913930-6-sbrivio@redhat.com/
found 1d6dd1d in https://archives.passt.top/passt-dev/20240618071427.1544869-4-sbrivio@redhat.com/ ||
	https://archives.passt.top/passt-dev/20240619194028.2913930-5-sbrivio@redhat.com/
found 3dab284 in https://passt.top/passt
preparing index
index prepared:
100644 3dab2841f42313dc82458d6f0d4eec477ef54b35	log.h

applying [1/2] https://archives.passt.top/passt-dev/20240618071427.1544869-4-sbrivio@redhat.com/
diff --git a/log.h b/log.h
index 3dab284..1d6dd1d 100644

Checking patch log.h...
Applied patch log.h cleanly.

skipping https://archives.passt.top/passt-dev/20240619194028.2913930-5-sbrivio@redhat.com/ for 1d6dd1d
index at:
100644 1d6dd1de2bb12b36d48e999e6192e23a1a03cdfa	log.h

applying [2/2] https://archives.passt.top/passt-dev/20240618071427.1544869-5-sbrivio@redhat.com/
diff --git a/log.h b/log.h
index 1d6dd1d..bdeffde 100644

Checking patch log.h...
Applied patch log.h cleanly.

skipping https://archives.passt.top/passt-dev/20240619194028.2913930-6-sbrivio@redhat.com/ for bdeffde
index at:
100644 bdeffdeacd37a05162d1d9f1521df6e82a335880	log.h

Code repositories for project(s) associated with this public inbox

	https://passt.top/passt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for IMAP folder(s).