Details
-
Improvement
-
Status: Resolved
-
Trivial
-
Resolution: Fixed
-
None
-
None
Description
In order to log strings, currently you must access the c style string from the std::string object
std::string world = "world";
logger->log_error("hello %s", world.c_str());
It would be much cleaner to allow :
std::string world = "world";
logger->log_error("hello %s", world);
The cost is miniscule. On the order of .1 to .01 seconds per 10M log messages.
Attachments
Issue Links
- links to