mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
more detailed crash logs in log capture
This commit is contained in:
parent
b3190076a9
commit
47a52d409d
1 changed files with 3 additions and 1 deletions
|
@ -86,11 +86,13 @@ public class Log {
|
|||
.append(lvl)
|
||||
.append(tag)
|
||||
.append(" ");
|
||||
s.append(m);
|
||||
if (t != null) {
|
||||
s.append(" ");
|
||||
s.append(t.getMessage());
|
||||
s.append(" ");
|
||||
s.append(android.util.Log.getStackTraceString(t));
|
||||
}
|
||||
s.append(m);
|
||||
q.offer(s.toString());
|
||||
Runnable r = new Runnable() {
|
||||
public void run() {
|
||||
|
|
Loading…
Add table
Reference in a new issue