logcat-color
logcat-color copied to clipboard
Profile does not work
from the source code of logcat-color:
if len(self.args) >= 1:
self.profile = Profile.get_profile(self.args[0])
if self.profile:
self.args = self.args[1:]
and profile.py:
class Profile(object):
profiles = {}
@classmethod
def get_profile(cls, name):
return cls.__profiles__.get(name, None)
I found nowhere the code to load the profile
@marshall I am currently experiencing the same issue. I was wondering if you or anyone has any time to take a look at this?