From 649fc605f8094c06a38251466ccb15a722e8a91f Mon Sep 17 00:00:00 2001 From: Mark Salyzyn Date: Tue, 16 Sep 2014 09:15:15 -0700 Subject: logcat: -v format defaults to threadtime Change-Id: Iafddf83b0507a667e0395d38ec9afaed67319018 --- logcat/logcat.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'logcat') diff --git a/logcat/logcat.cpp b/logcat/logcat.cpp index fecbdb7..b557011 100644 --- a/logcat/logcat.cpp +++ b/logcat/logcat.cpp @@ -259,7 +259,7 @@ static void show_help(const char *cmd) "\nIf not specified on the commandline, filterspec is set from ANDROID_LOG_TAGS.\n" "If no filterspec is found, filter defaults to '*:I'\n" "\nIf not specified with -v, format is set from ANDROID_PRINTF_LOG\n" - "or defaults to \"brief\"\n\n"); + "or defaults to \"threadtime\"\n\n"); @@ -543,7 +543,9 @@ int main(int argc, char **argv) exit(-1); } - hasSetLogFormat = 1; + if (strcmp("color", optarg)) { // exception for modifiers + hasSetLogFormat = 1; + } break; case 'Q': @@ -653,11 +655,12 @@ int main(int argc, char **argv) if (logFormat != NULL) { err = setLogFormat(logFormat); - if (err < 0) { fprintf(stderr, "invalid format in ANDROID_PRINTF_LOG '%s'\n", logFormat); } + } else { + setLogFormat("threadtime"); } } -- cgit v1.1