Using console() not working in windows?

I am trying to use console() and I don’t get any output? I am keeping the subsystem Windows, and set settings->setConsoleWindowEnabled(true); which didn’t do anything. Using CI_LOG_D and others doesn’t work in my case, because I am outputting custom tables to console.
I am using Windows 10, MSVS 2019, and cinder 0.9.3. Thanks.

The standard cout is not routed to Visual Studio’s console window. It’s a Microsoft thing. For a workaround, see: https://stackoverflow.com/a/16704076/858219

You can also use another log library, like spdlog.