Please never use std::cout in unit tests. Use LOG(ERROR) if you want to output debug information about internal error state. That will log the correct process id.
The reason is dead simple, it makes automatic log processing hard and Pawel's regexp miserable. If you still want to use cout, at least please use \n or std::endl. Thanks, M-A --~--~---------~--~----~------------~-------~--~----~ Chromium Developers mailing list: [email protected] View archives, change email options, or unsubscribe: http://groups.google.com/group/chromium-dev -~----------~----~----~----~------~----~------~--~---
