-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlog.cpp
More file actions
executable file
·75 lines (63 loc) · 1.37 KB
/
log.cpp
File metadata and controls
executable file
·75 lines (63 loc) · 1.37 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/*
* log.cpp
* Used for printing out debug information
* Last modified for release!
*/
#include <stdio.h>
#include <stdarg.h>
#include <time.h>
#include <sys/time.h>
#include "log.h"
/* Constructor */
Log::Log()
{
isEnable_ = false;
}
/* Destructor */
Log::~Log()
{
}
/* enable PrintDebug */
void Log::set_debug()
{
isEnable_ = true;
}
/* For printing out log information */
void Log::PrintLog(const char *format, ...)
{
va_list ap;
struct timeval t;
va_start(ap, format);
gettimeofday(&t, NULL);
fprintf(stdout, "[%lu.%06lu] ", (long int)t.tv_sec, (long int)t.tv_usec);
vfprintf(stdout, format, ap);
va_end(ap);
fflush(stdout);
}
/* For printing out debug information (used for debugging!) */
void Log::PrintDebug(const char *format, ...)
{
va_list ap;
struct timeval t;
if (isEnable_)
{
va_start(ap, format);
gettimeofday(&t, NULL);
fprintf(stdout, "[Dbg][%lu.%06lu] ", (long int)t.tv_sec, (long int)t.tv_usec);
vfprintf(stdout, format, ap);
va_end(ap);
fflush(stdout);
}
}
/* For printing out error information */
void Log::PrintErr(const char *format, ...)
{
va_list ap;
struct timeval t;
va_start(ap, format);
gettimeofday(&t, NULL);
fprintf(stderr, "[Err][%lu.%06lu] ", (long int)t.tv_sec, (long int)t.tv_usec);
vfprintf(stderr, format, ap);
va_end(ap);
fflush(stderr);
}