public inbox for passt-dev@passt.top
 help / color / mirror / code / Atom feed
blob ed71cd7f593a1169de3ffdb0dc8a1bd31a89286d 935 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
 
/* SPDX-License-Identifier: AGPL-3.0-or-later
 * Copyright (c) 2022 Red Hat GmbH
 * Author: Stefano Brivio <sbrivio@redhat.com>
 */

#ifndef LOG_H
#define LOG_H

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

void err(const char *format, ...);
void warn(const char *format, ...);
void info(const char *format, ...);
void debug(const char *format, ...);

extern int log_trace;
void trace_init(int enable);
#define trace(format, ...)						\
	do {								\
		if (log_trace)						\
			debug(format, ##__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 ed71cd7 ...
found ed71cd7 in https://archives.passt.top/passt-dev/20221007004742.1188933-5-sbrivio@redhat.com/
found 70cad6f in https://passt.top/passt
preparing index
index prepared:
100644 70cad6f47f92d959af48570ebfac1bad5ea337bc	log.h

applying [1/1] https://archives.passt.top/passt-dev/20221007004742.1188933-5-sbrivio@redhat.com/
diff --git a/log.h b/log.h
index 70cad6f..ed71cd7 100644

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

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