1// This file exists to override the processor logging for unit tests,
2// since it confuses XCode into thinking unit tests have failed.
3#include <sstream>
4
5namespace google_breakpad {
6extern std::ostringstream info_log;
7}
8
9#define BPLOG_INFO_STREAM google_breakpad::info_log
10