adding goat3d to the project
[deeprace] / libs / goat3d / src / log.c
1 /*
2 goat3d - 3D scene, and animation file format library.
3 Copyright (C) 2013-2018  John Tsiombikas <nuclear@member.fsf.org>
4
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU Lesser General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public License
16 along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 */
18 #include <stdio.h>
19 #include <stdarg.h>
20 #include "log.h"
21
22 int goat3d_log_level = 256;
23
24 void goat3d_logmsg(int prio, const char *fmt, ...)
25 {
26         va_list ap;
27
28         if(goat3d_log_level < prio) {
29                 return;
30         }
31
32         fprintf(stderr, "goat3d: ");
33         va_start(ap, fmt);
34         vfprintf(stderr, fmt, ap);
35         va_end(ap);
36 }