LexLeo 0.0.0-dev+f8e5087-dirty
Technical documentation
Loading...
Searching...
No Matches
logger.h
Go to the documentation of this file.
1/* SPDX-License-Identifier: GPL-3.0-or-later
2 * Copyright (C) 2026 Sylvain Labopin
3 */
4
15#ifndef LEXLEO_LOGGER_H
16#define LEXLEO_LOGGER_H
17
18#include "logger_types.h"
19
20#ifdef __cplusplus
21extern "C" {
22#endif
23
40logger_status_t logger_log(logger_t *l, const char *message);
41
42#ifdef __cplusplus
43}
44#endif
45
46#endif //LEXLEO_LOGGER_H
logger_status_t logger_log(logger_t *l, const char *message)
Emit a log message through a logger.
Definition logger.c:77
logger_status_t
Private handle structure for a logger_t.