|
|
|
|
|
by swah
658 days ago
|
|
So you're actually spawning threads in this simple C++ example? I thought this was refrained in C++ land... #include "NanoLogCpp17.h"
using namespace NanoLog::LogLevels;
int main()
{
NANO_LOG(NOTICE, "Hello World! This is an integer %d and a double %lf\r\n", 1, 2.0);
return 0;
}
|
|