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

#include <stdio.h>

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