Fix failure to match new format start messages

For low pids there's a space in front of the PID in the log message.
All my testing was on high pids :(
This commit is contained in:
Adam Hupp
2014-10-06 17:18:08 -07:00
parent 493e12a55c
commit 82c3305c7b
+1 -1
View File
@@ -140,7 +140,7 @@ TAGTYPES = {
}
PID_START = re.compile(r'^.*: Start proc ([a-zA-Z0-9._:]+) for ([a-z]+ [^:]+): pid=(\d+) uid=(\d+) gids=(.*)$')
PID_START_DALVIK = re.compile(r'^E/dalvikvm\((\d+)\): >>>>> ([a-zA-Z0-9._:]+) \[ userId:0 \| appId:(\d+) \]$')
PID_START_DALVIK = re.compile(r'^E/dalvikvm\(\s?(\d+)\): >>>>> ([a-zA-Z0-9._:]+) \[ userId:0 \| appId:(\d+) \]$')
PID_KILL = re.compile(r'^Killing (\d+):([a-zA-Z0-9._:]+)/[^:]+: (.*)$')
PID_LEAVE = re.compile(r'^No longer want ([a-zA-Z0-9._:]+) \(pid (\d+)\): .*$')
PID_DEATH = re.compile(r'^Process ([a-zA-Z0-9._:]+) \(pid (\d+)\) has died.?$')