am 6419687f: am 929c7fe1: am 5bc6b5b8: Merge "Fixed logcat debug output issue."

* commit '6419687fe05ea5b64e3db4f380f45b157d6fa10a':
  Fixed logcat debug output issue.
This commit is contained in:
Elliott Hughes 2014-06-17 21:40:41 +00:00 committed by Android Git Automerger
commit e1f7c176f6
1 changed files with 4 additions and 2 deletions

View File

@ -58,8 +58,10 @@ bool is_allowed_in_logcat(enum logtype ltype) {
void _LOG(log_t* log, enum logtype ltype, const char* fmt, ...) {
bool write_to_tombstone = log && log->tfd;
bool write_to_logcat = (!log || !log->quiet) && is_allowed_in_logcat(ltype)
&& (log && log->crashed_tid == log->current_tid);
bool write_to_logcat = (!log || !log->quiet) && is_allowed_in_logcat(ltype);
if (log != NULL) {
write_to_logcat &= (log->crashed_tid == log->current_tid);
}
bool write_to_activitymanager = log && log->amfd >= 0 && is_allowed_in_logcat(ltype);
char buf[512];