summaryrefslogtreecommitdiff
path: root/libgs/src/log.h
blob: 83e378432a11719b0ad637d9dd608259e72a09f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef __GS_LOG_H
#define __GS_LOG_H

enum gs_log_level {
	GS_INFO = 0,
	GS_WARNING,
	GS_ERROR,
	GS_FATAL
};

void gs_log(enum gs_log_level level, const char *namespace, const char *format, ...);

#endif