You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
219 B
C++
16 lines
219 B
C++
![]()
6 years ago
|
#include "webcc/logger.h"
|
||
|
|
||
|
int main() {
|
||
|
WEBCC_LOG_INIT("", webcc::LOG_CONSOLE);
|
||
|
|
||
|
LOG_INFO("info");
|
||
|
LOG_WARN("warn");
|
||
|
LOG_ERRO("erro");
|
||
|
LOG_VERB("verb");
|
||
|
LOG_FATA("fata");
|
||
|
LOG_INFO("info");
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|