I am new to Boost.Log in my c++ program. I create a logger called "simlog" and then I use following line to output my log text:
BOOST_LOG( simlog ) << "some log info";
I don't want the default endl be appended to each of statement like this. I'd rather control whether to add a endl or not myself. How do I do that with Boost.Log? Is there a format setting to turn it on/off?