We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
There are some issues with exception and formatter:
Log.useFormat(true); Exception e = new Exception("foo"); Log.d(TAG, "Something bad happened %d, error", 123, e);
prints: 'Something bad happened 123, error'
Log.useFormat(true); Exception e = new Exception("foo"); Log.d(TAG, "Something bad happened %d, error %s", 123, e);
Crash the app with exception: Caused by: java.util.MissingFormatArgumentException:
The text was updated successfully, but these errors were encountered:
maybe you will use in case number 2 below code version? Log.d(TAG, "Something bad happened %d, error %s", 123, e.toString());
Log.d(TAG, "Something bad happened %d, error %s", 123, e.toString());
Sorry, something went wrong.
No branches or pull requests
There are some issues with exception and formatter:
prints: 'Something bad happened 123, error'
Crash the app with exception: Caused by: java.util.MissingFormatArgumentException:
The text was updated successfully, but these errors were encountered: