aboutsummaryrefslogtreecommitdiff
path: root/interpreter/log.c
diff options
context:
space:
mode:
Diffstat (limited to 'interpreter/log.c')
-rw-r--r--interpreter/log.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/interpreter/log.c b/interpreter/log.c
new file mode 100644
index 0000000..c369b4b
--- /dev/null
+++ b/interpreter/log.c
@@ -0,0 +1,9 @@
+#include "log.h"
+
+#include <stdio.h>
+
+#if(LOG_LEVEL < LOG_DEBUG)
+void log_debug(char* msg) {
+ fprintf(stdout, "%s\n", msg);
+}
+#endif