public inbox for passt-dev@passt.top
 help / color / mirror / code / Atom feed
blob 680baab7befe6ee3f645f4c6ce0cc9d0c67f172c 1460 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
 
/* 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 <stdint.h>
#include <syslog.h>

#define LOG_FLAG_CONF_PARSED	BIT(0)	/* We already parsed logging options */
#define LOG_FLAG_DAEMON_READY	BIT(1)	/* Daemonised, or ready in foreground */

#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)));

#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 die(...)							\
	do {								\
		err(__VA_ARGS__);					\
		exit(EXIT_FAILURE);					\
	} while (0)

extern int log_trace;
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);
void log_set_flag(uint8_t flag);

#endif /* LOG_H */

debug log:

solving 680baab ...
found 680baab in https://archives.passt.top/passt-dev/20240617120319.1206857-4-sbrivio@redhat.com/
found 6a3224a in https://archives.passt.top/passt-dev/20240617120319.1206857-3-sbrivio@redhat.com/
found e0aab5a in https://passt.top/passt
preparing index
index prepared:
100644 e0aab5a9dc9a501843ac13a4f2efd95ce62e2f80	log.h

applying [1/2] https://archives.passt.top/passt-dev/20240617120319.1206857-3-sbrivio@redhat.com/
diff --git a/log.h b/log.h
index e0aab5a..6a3224a 100644


applying [2/2] https://archives.passt.top/passt-dev/20240617120319.1206857-4-sbrivio@redhat.com/
diff --git a/log.h b/log.h
index 6a3224a..680baab 100644

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

index at:
100644 680baab7befe6ee3f645f4c6ce0cc9d0c67f172c	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).