aboutsummaryrefslogtreecommitdiff
path: root/compiler/log.c
blob: 936201977fb7bf07a6b3968a69e68cc4f82b74fa (plain) (blame)
1
2
3
4
5
6
7
8
9
#include "log.h"

#include <stdio.h>

void log_debug(char* msg) {
	#if(LOG_LEVEL < LOG_DEBUG)
	fprintf(stdout, "%s\n", msg);
	#endif
}