iopsys-feed/dm-framework/dm-api/src/include/dm_log.h
2025-07-10 16:46:46 +02:00

20 lines
645 B
C

/*
* Copyright (c) 2023 Genexis B.V. All rights reserved.
*
* This Software and its content are protected by the Dutch Copyright Act
* ('Auteurswet'). All and any copying and distribution of the software
* and its content without authorization by Genexis B.V. is
* prohibited. The prohibition includes every form of reproduction and
* distribution.
*
*/
#ifndef DMLOG_H
#define DMLOG_H
void dmlog_init(const char *name, int log_level);
void dmlog_info(const char *fmt, ...);
void dmlog_warn(const char *fmt, ...);
void dmlog_error(const char *fmt, ...);
void dmlog_debug(const char *fmt, ...);
void dmlog_close();
#endif /* DMLOG_H */