From a2604bb7934c27f221395e1c0a20db450bb36cd9 Mon Sep 17 00:00:00 2001 From: Jake Wharton Date: Mon, 25 May 2015 17:50:58 -0700 Subject: [PATCH] Change default tag length to 23. --- pidcat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pidcat.py b/pidcat.py index 1a896db..d481a3f 100755 --- a/pidcat.py +++ b/pidcat.py @@ -33,7 +33,7 @@ LOG_LEVELS = 'VDIWEF' LOG_LEVELS_MAP = dict([(LOG_LEVELS[i], i) for i in range(len(LOG_LEVELS))]) parser = argparse.ArgumentParser(description='Filter logcat by package name') parser.add_argument('package', nargs='*', help='Application package name(s)') -parser.add_argument('-w', '--tag-width', metavar='N', dest='tag_width', type=int, default=22, help='Width of log tag') +parser.add_argument('-w', '--tag-width', metavar='N', dest='tag_width', type=int, default=23, help='Width of log tag') parser.add_argument('-l', '--min-level', dest='min_level', type=str, choices=LOG_LEVELS+LOG_LEVELS.lower(), default='V', help='Minimum level to be displayed') parser.add_argument('--color-gc', dest='color_gc', action='store_true', help='Color garbage collection') parser.add_argument('--always-display-tags', dest='always_tags', action='store_true',help='Always display the tag name')