Android-PLog
Android-PLog copied to clipboard
Fix message printed twice when a throwable is given
When calling PLog.level(level).tag(tag).msg("The throwable is %s").throwable(throwable).print() with DefaultFormatter configured, it prints out:
The throwable is The throwable is %sjava.lang.Throwable:...
But the expected result is:
The throwable is java.lang.Throwable:...
This patch fixes the issue.