while going over some old code that I didnt wrote I noticed something like this(simplified)
//switch case on a msg received from a queue,...
//... get_function returns msgtype and ptr
switch(msgtype)
//...
default:
{
MYLOGGER<< "Unknown message" << (*ptr)->some_member_var <<"\r\n";
}
So I thought on trying to change it to
default:
{
MYLOGGER<< "Unknown message...\r\n";
MYLOGGER<< "..." << (*ptr)->some_member_var << "\r\n";
}
because in case ptr is junk I fear crash before logging even begins? Am I rigth in this example? Also in general should one avoid doing dereferencing when logging errors.
EDIT: regarding MYLOGGER, it is a macro that ends up with this: logger class with overloaded operator << that does ostream flush() in dtror, so no need for endl.
ptris valid before dereferencing – EdChum Dec 5 '12 at 10:12