From e2bf2ea4d2846031edfc52b942ad53e5467243f6 Mon Sep 17 00:00:00 2001 From: Joe Onorato Date: Mon, 1 Mar 2010 09:11:54 -0800 Subject: Make logcat print both the main and system buffers by default. Make SLOGx macros work. --- liblog/logprint.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'liblog/logprint.c') diff --git a/liblog/logprint.c b/liblog/logprint.c index 080f9e3..5ddda36 100644 --- a/liblog/logprint.c +++ b/liblog/logprint.c @@ -840,7 +840,7 @@ char *android_log_formatLogLine ( * Returns count bytes written */ -int android_log_filterAndPrintLogLine( +int android_log_printLogLine( AndroidLogFormat *p_format, int fd, const AndroidLogEntry *entry) @@ -850,11 +850,6 @@ int android_log_filterAndPrintLogLine( char *outBuffer = NULL; size_t totalLen; - if (0 == android_log_shouldPrintLine(p_format, entry->tag, - entry->priority)) { - return 0; - } - outBuffer = android_log_formatLogLine(p_format, defaultBuffer, sizeof(defaultBuffer), entry, &totalLen); -- cgit v1.1