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 
5 namespace google_breakpad {
6 extern std::ostringstream info_log;
7 }
8 
9 #define BPLOG_INFO_STREAM google_breakpad::info_log
10