main.cpp: Add use of log.

This commit is contained in:
kpl 2022-06-12 18:07:33 -04:00
parent 83362b2b97
commit 700d72d43c

View File

@ -9,6 +9,11 @@ void print( void* arg, const char* text )
int main( int argc, char* argv[] )
{
cw::log::createGlobal();
cwLogInfo("Project template");
cw::log::destroyGlobal();
return 0;
}