├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── logcat-color ├── logcatcolor ├── __init__.py ├── column.py ├── config.py ├── format.py ├── layout.py ├── profile.py └── reader.py ├── release.py ├── setup.json ├── setup.py └── test ├── common.py ├── config_test.py ├── configs ├── brief_filter_config ├── empty_config └── simple_config ├── format_test.py ├── logcat_color_test.py ├── logs └── brief_log ├── mock-adb ├── profile_test.py └── test.py /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | dist 3 | *.egg-info 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshall/logcat-color/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshall/logcat-color/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshall/logcat-color/HEAD/README.md -------------------------------------------------------------------------------- /logcat-color: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshall/logcat-color/HEAD/logcat-color -------------------------------------------------------------------------------- /logcatcolor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logcatcolor/column.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshall/logcat-color/HEAD/logcatcolor/column.py -------------------------------------------------------------------------------- /logcatcolor/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshall/logcat-color/HEAD/logcatcolor/config.py -------------------------------------------------------------------------------- /logcatcolor/format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshall/logcat-color/HEAD/logcatcolor/format.py -------------------------------------------------------------------------------- /logcatcolor/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshall/logcat-color/HEAD/logcatcolor/layout.py -------------------------------------------------------------------------------- /logcatcolor/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshall/logcat-color/HEAD/logcatcolor/profile.py -------------------------------------------------------------------------------- /logcatcolor/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshall/logcat-color/HEAD/logcatcolor/reader.py -------------------------------------------------------------------------------- /release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshall/logcat-color/HEAD/release.py -------------------------------------------------------------------------------- /setup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshall/logcat-color/HEAD/setup.json -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshall/logcat-color/HEAD/setup.py -------------------------------------------------------------------------------- /test/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshall/logcat-color/HEAD/test/common.py -------------------------------------------------------------------------------- /test/config_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshall/logcat-color/HEAD/test/config_test.py -------------------------------------------------------------------------------- /test/configs/brief_filter_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshall/logcat-color/HEAD/test/configs/brief_filter_config -------------------------------------------------------------------------------- /test/configs/empty_config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/configs/simple_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshall/logcat-color/HEAD/test/configs/simple_config -------------------------------------------------------------------------------- /test/format_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshall/logcat-color/HEAD/test/format_test.py -------------------------------------------------------------------------------- /test/logcat_color_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshall/logcat-color/HEAD/test/logcat_color_test.py -------------------------------------------------------------------------------- /test/logs/brief_log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshall/logcat-color/HEAD/test/logs/brief_log -------------------------------------------------------------------------------- /test/mock-adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshall/logcat-color/HEAD/test/mock-adb -------------------------------------------------------------------------------- /test/profile_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshall/logcat-color/HEAD/test/profile_test.py -------------------------------------------------------------------------------- /test/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshall/logcat-color/HEAD/test/test.py --------------------------------------------------------------------------------