mirror of
https://github.com/imcarlost/pidcat-repl.git
synced 2026-08-08 23:17:43 -04:00
Add 'F' level to log levels.
This commit is contained in:
@@ -29,7 +29,7 @@ import subprocess
|
|||||||
from subprocess import PIPE
|
from subprocess import PIPE
|
||||||
|
|
||||||
|
|
||||||
LOG_LEVELS = ['V','D','I','W','E']
|
LOG_LEVELS = 'VDIWEF'
|
||||||
LOG_LEVELS_MAP = dict([(LOG_LEVELS[i], i) for i in range(len(LOG_LEVELS))])
|
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 = argparse.ArgumentParser(description='Filter logcat by package name')
|
||||||
parser.add_argument('package', nargs='+', help='Application package name(s)')
|
parser.add_argument('package', nargs='+', help='Application package name(s)')
|
||||||
|
|||||||
Reference in New Issue
Block a user