mirror of
https://github.com/signalapp/Signal-Android.git
synced 2025-12-20 11:08:31 +00:00
Increase thread string length to 5 in logs.
This commit is contained in:
@@ -159,9 +159,9 @@ public final class PersistentLogger extends Log.Logger {
|
||||
|
||||
if (cachedThreadString.get() == null) {
|
||||
if (Looper.myLooper() == Looper.getMainLooper()) {
|
||||
threadString = "main";
|
||||
threadString = "main ";
|
||||
} else {
|
||||
threadString = String.format("%-4s", Thread.currentThread().getId());
|
||||
threadString = String.format("%-5s", Thread.currentThread().getId());
|
||||
}
|
||||
|
||||
cachedThreadString.set(threadString);
|
||||
|
||||
Reference in New Issue
Block a user