Bug 831307: Log breakpoint-level IPC errors always. r=dougt,jdm,jst a=blocking-b2g

This commit is contained in:
Chris Jones 2013-01-16 19:47:21 -08:00
Родитель 3a85a98855
Коммит 7eb129ce82
1 изменённых файлов: 4 добавлений и 3 удалений

Просмотреть файл

@ -115,9 +115,10 @@ LoggingEnabled()
inline void
ProtocolErrorBreakpoint(const char* aMsg)
{
if (LoggingEnabled()) {
printf_stderr("Protocol error: %s\n", aMsg);
}
// Bugs that generate these error messages can be tough to
// reproduce. Log always in the hope that someone finds the error
// message.
printf_stderr("IPDL protocol error: %s\n", aMsg);
}
typedef IPCMessageStart ProtocolId;