If you are using syslog(3) then it is defined as:
void syslog(int priority, const char *message, ...);
Either you want to use printf-like functionality of syslog:
catch (const std::exception& e)
{
syslog(LOG_ERR, "exception: %s", e.what());
}
Or you can convert the std::string to const char*, using the std::string::c_str member function:
catch (const std::exception& e)
{
std::string message = std::string("exception: ") + e.what();
syslog(LOG_ERR, message.c_str());
}
Another note, catch by const-reference, else it is a good chance that the actual thrown exception object gets sliced.
const char*(as per your question) orconst char(passed by reference, as per your code) to astring? Your usage is unclear. – Johnsyweb Nov 14 '10 at 8:29const exception& eincatchbecause otherwise your exception object will be truncated toexception. – vitaut Nov 14 '10 at 8:41throw std::runtime_error( std::string("Bad user input: ") + user_input )and the user input contained a format attack? Your program would be toast! – Zan Lynx Apr 18 '11 at 23:37