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:
@@ -161,7 +161,7 @@ public final class PersistentLogger extends Log.Logger {
|
|||||||
if (Looper.myLooper() == Looper.getMainLooper()) {
|
if (Looper.myLooper() == Looper.getMainLooper()) {
|
||||||
threadString = "main ";
|
threadString = "main ";
|
||||||
} else {
|
} else {
|
||||||
threadString = String.format("%-4s", Thread.currentThread().getId());
|
threadString = String.format("%-5s", Thread.currentThread().getId());
|
||||||
}
|
}
|
||||||
|
|
||||||
cachedThreadString.set(threadString);
|
cachedThreadString.set(threadString);
|
||||||
|
|||||||
Reference in New Issue
Block a user