| Index: base/logging.cc
|
| diff --git a/base/logging.cc b/base/logging.cc
|
| index 7654e7f3bf99e6881e6e896fe8dab0221c9010b1..1f0f6d422579f5b59379f4ff6ca93af7353ee3c0 100644
|
| --- a/base/logging.cc
|
| +++ b/base/logging.cc
|
| @@ -582,7 +582,7 @@ LogMessage::~LogMessage() {
|
| priority = ANDROID_LOG_FATAL;
|
| break;
|
| }
|
| - __android_log_write(priority, "chromium", str_newline.c_str());
|
| + __android_log_write(priority, ANDROID_LOG_TAG, str_newline.c_str());
|
| #endif
|
| ignore_result(fwrite(str_newline.data(), str_newline.size(), 1, stderr));
|
| fflush(stderr);
|
|
|