Log thread name

This commit is contained in:
M66B 2019-11-07 12:38:07 +01:00
parent ec9947aad2
commit 4775dce9ba
2 changed files with 3 additions and 3 deletions

View File

@ -231,7 +231,7 @@ class Core {
if (op.message != null)
crumb.put("message", Long.toString(op.message));
crumb.put("similar", TextUtils.join(",", sids));
crumb.put("thread", Long.toString(Thread.currentThread().getId()));
crumb.put("thread", Thread.currentThread().getName());
crumb.put("free", Integer.toString(Log.getFreeMemMb()));
Log.breadcrumb("start operation", crumb);
@ -362,7 +362,7 @@ class Core {
}
}
crumb.put("thread", Long.toString(Thread.currentThread().getId()));
crumb.put("thread", Thread.currentThread().getName());
crumb.put("free", Integer.toString(Log.getFreeMemMb()));
Log.breadcrumb("end operation", crumb);

View File

@ -299,7 +299,7 @@ public class Log {
public boolean run(@NonNull Error error) {
error.addToTab("extra", "installer", installer == null ? "-" : installer);
error.addToTab("extra", "fingerprint", fingerprint);
error.addToTab("extra", "thread", Thread.currentThread().getId());
error.addToTab("extra", "thread", Thread.currentThread().getName());
error.addToTab("extra", "free", Log.getFreeMemMb());
String theme = prefs.getString("theme", "light");