-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
45 lines (29 loc) · 762 Bytes
/
main.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
//
// Created by Gabriele Gaetano Fronzé on 2019-11-06.
//
#include "fastlog.h"
using namespace fastlog;
int main(){
std::cout << "Showing effect of various loglevels:";
std::cout << "\n\nLOGLEVEL = DEBUG\n";
logLevel = DEBUG;
fastlog(INFO, "Info");
fastlog(DEBUG, "Debug");
fastlog(ERROR, "Error");
std::cout << "\n\nLOGLEVEL = INFO\n";
logLevel = INFO;
fastlog(INFO, "Info");
fastlog(DEBUG, "Debug");
fastlog(ERROR, "Error");
std::cout << "\n\nLOGLEVEL = ERROR\n";
logLevel = ERROR;
fastlog(INFO, "Info");
fastlog(DEBUG, "Debug");
fastlog(ERROR, "Error");
std::cout << "\n\nLOGLEVEL = SILENT\n";
logLevel = SILENT;
fastlog(INFO, "Info");
fastlog(DEBUG, "Debug");
fastlog(ERROR, "Error");
return 0;
}