Anjay Lite
Loading...
Searching...
No Matches
log_impl_decls.h
Go to the documentation of this file.
1/*
2 * Copyright 2023-2025 AVSystem <avsystem@avsystem.com>
3 * AVSystem Anjay Lite LwM2M SDK
4 * All rights reserved.
5 *
6 * Licensed under AVSystem Anjay Lite LwM2M Client SDK - Non-Commercial License.
7 * See the attached LICENSE file for details.
8 */
9
10#include <anj/init.h>
11
12#ifndef ANJ_LOG_LOG_IMPL_DECLS_H
13# define ANJ_LOG_LOG_IMPL_DECLS_H
14
15# include <stdarg.h>
16# include <stddef.h>
17
18# ifdef __cplusplus
19extern "C" {
20# endif
21
40
42 const char *module,
43 const char *file,
44 int line,
45 const char *format,
46 ...);
47
60void anj_log_handler_output(const char *output, size_t len);
61
62# ifdef __cplusplus
63}
64# endif
65
66#endif // ANJ_LOG_LOG_IMPL_DECLS_H
void anj_log_handler_impl_full(anj_log_level_t level, const char *module, const char *file, int line, const char *format,...)
anj_log_level_t
Definition log_impl_decls.h:32
@ ANJ_LOG_LEVEL_L_TRACE
Definition log_impl_decls.h:33
@ ANJ_LOG_LEVEL_L_INFO
Definition log_impl_decls.h:35
@ ANJ_LOG_LEVEL_L_MUTED
Definition log_impl_decls.h:38
@ ANJ_LOG_LEVEL_L_WARNING
Definition log_impl_decls.h:36
@ ANJ_LOG_LEVEL_L_DEBUG
Definition log_impl_decls.h:34
@ ANJ_LOG_LEVEL_L_ERROR
Definition log_impl_decls.h:37
void anj_log_handler_output(const char *output, size_t len)