-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problem with PID detection #1
Comments
OK, we'll investigate. We have to find which version of the logcat had this change. I suppose you use an official ROM ? |
Hi. Sample log follows. Yeah stock jellybean on galaxy nexus samsung Galaxy Nexus (JRO03C) API v16 (4.1.1) [START LOGCAT] ---------
|
final String pidTest = String.format("(% 5d)", android.os.Process.myPid());
With the space in situ this doesn't work on my handset (Galaxy Nexus JellyBean).
This works (without the space).
final String pidTest = String.format("(%5d)", android.os.Process.myPid());
The text was updated successfully, but these errors were encountered: