2022-09-24 09:53:15 +02:00
|
|
|
/* 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
|
|
|
|
|
2022-10-06 14:51:04 +02:00
|
|
|
#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))
|
|
|
|
|
2023-02-15 09:24:30 +01:00
|
|
|
void die(const char *format, ...);
|
2022-09-24 09:53:15 +02:00
|
|
|
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);
|
2022-10-12 17:31:37 +02:00
|
|
|
#define trace(...) \
|
2022-09-24 09:53:15 +02:00
|
|
|
do { \
|
|
|
|
if (log_trace) \
|
2022-10-12 17:31:37 +02:00
|
|
|
debug(__VA_ARGS__); \
|
2022-09-24 09:53:15 +02:00
|
|
|
} while (0)
|
|
|
|
|
|
|
|
void __openlog(const char *ident, int option, int facility);
|
2022-10-06 14:51:04 +02:00
|
|
|
void logfile_init(const char *name, const char *path, size_t size);
|
2022-09-24 09:53:15 +02:00
|
|
|
void passt_vsyslog(int pri, const char *format, va_list ap);
|
2022-10-06 14:51:04 +02:00
|
|
|
void logfile_write(int pri, const char *format, va_list ap);
|
2022-09-24 09:53:15 +02:00
|
|
|
void __setlogmask(int mask);
|
|
|
|
|
|
|
|
#endif /* LOG_H */
|