mirror of
https://github.com/hyprwm/xdg-desktop-portal-hyprland.git
synced 2024-11-22 14:35:57 +01:00
28 lines
445 B
C
28 lines
445 B
C
#ifndef LOGGER_H
|
|
#define LOGGER_H
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <stdarg.h>
|
|
#include <string.h>
|
|
#include <time.h>
|
|
|
|
enum LOGLEVEL {
|
|
QUIET,
|
|
ERROR,
|
|
WARN,
|
|
INFO,
|
|
DEBUG,
|
|
TRACE
|
|
};
|
|
|
|
struct logger_properties{
|
|
enum LOGLEVEL level;
|
|
FILE *__restrict__ dst;
|
|
};
|
|
|
|
void init_logger(FILE *__restrict__ dst, enum LOGLEVEL level);
|
|
enum LOGLEVEL get_loglevel(const char *level);
|
|
void logprint(enum LOGLEVEL level, char *msg, ...);
|
|
|
|
#endif
|