log
log copied to clipboard
Exception and Formatter issues
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:
maybe you will use in case number 2 below code version?
Log.d(TAG, "Something bad happened %d, error %s", 123, e.toString());