LOGOG_INITIALIZE(); { logog::Formatter * pFormatter = &(logog::GetDefaultFormatter()); pFormatter->SetShowTimeOfDay(true); logog::LogFile logFile("log.txt"); pFormatter->SetTimeOfDayFormat("%Y-%m-%d %H:%M:%S"); //%Y-%m-%d %H:%M:%S.{milliseconds}-how to added milliseconds? for (int i = 0; i < 100; ++i) INFO("Test string %i", i); } LOGOG_SHUTDOWN();