goat3d

view src/log.cc @ 39:0e48907847ad

slugishly progressing with the blender exporter
author John Tsiombikas <nuclear@member.fsf.org>
date Wed, 09 Oct 2013 16:40:59 +0300
parents cb6c1a945a11
children 498ca7ac7047
line source
1 #include <stdio.h>
2 #include <stdarg.h>
3 #include "log.h"
5 int goat_log_level = 256;
7 void logmsg(int prio, const char *fmt, ...)
8 {
9 va_list ap;
11 if(goat_log_level < prio) {
12 return;
13 }
15 fprintf(stderr, "goat3d: ");
16 va_start(ap, fmt);
17 vfprintf(stderr, fmt, ap);
18 va_end(ap);
19 }