| Index: base/debug/debugger.cc
|
| diff --git a/base/debug/debugger.cc b/base/debug/debugger.cc
|
| index 1ccee1c2c2f8746277a00670bb726c79d5ec6b88..02ca1d8baaa6a92ae606f112baccaa19383a2f65 100644
|
| --- a/base/debug/debugger.cc
|
| +++ b/base/debug/debugger.cc
|
| @@ -16,8 +16,8 @@ bool WaitForDebugger(int wait_seconds, bool silent) {
|
| #if defined(OS_ANDROID)
|
| // The pid from which we know which process to attach to are not output by
|
| // android ddms, so we have to print it out explicitly.
|
| - DLOG(INFO) << "DebugUtil::WaitForDebugger(pid=" << static_cast<int>(getpid())
|
| - << ")";
|
| + LOG(INFO) << "DebugUtil::WaitForDebugger(pid=" << static_cast<int>(getpid())
|
| + << ")";
|
| #endif
|
| for (int i = 0; i < wait_seconds * 10; ++i) {
|
| if (BeingDebugged()) {
|
|
|