Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1575)

Unified Diff: base/logging.cc

Issue 1644753002: Make base work on iOS (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: rebase Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/debug/stack_trace_android.cc ('k') | base/time/time.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « base/debug/stack_trace_android.cc ('k') | base/time/time.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698