-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathlogging.cpp
49 lines (40 loc) · 852 Bytes
/
logging.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/*
FPTOOL - a fixed-point math to VHDL generation tool
Description: logging system
Author: Niels A. Moseley
*/
#include <iostream>
#include <stdio.h>
#include <stdarg.h>
#include "logging.h"
static bool g_debugEnabled = false;
void setDebugging(bool enabled)
{
g_debugEnabled = enabled;
}
void doLog(logtype_t t, const char *format, ...)
{
switch(t)
{
case LOG_INFO:
std::cout << "INFO: ";
break;
case LOG_DEBUG:
if (!g_debugEnabled) return;
std::cout << "DEBUG: ";
break;
case LOG_WARN:
std::cout << "WARNING: ";
break;
case LOG_ERROR:
std::cout << "ERROR: ";
break;
default:
break;
}
//FIXME: change to C++ style
va_list argptr;
va_start(argptr, format);
vprintf(format, argptr);
va_end(argptr);
}