Log/test.cpp

19 lines
377 B
C++
Raw Normal View History

2020-09-23 18:53:19 +02:00
#include "Log.h"
int main() {
Log::init();
Log::setColoredOutput(true);
Log::fatal << "test: fatal";
Log::error << "test: error";
Log::warn << "test: warn";
Log::note << "test: note";
Log::info << "test: info";
Log::debug << "test: debug";
Log::trace << "test: trace";
Log::fatal << "test: fatal" << 2;
Log::error << "test: error" << 3 << '!';
// Log::stop();
}