mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-02-25 12:17:22 +00:00
Fix name of thread dump log sections.
This commit is contained in:
@@ -15,7 +15,7 @@ public class LogSectionCurrentThreadDump implements LogSection {
|
||||
|
||||
@Override
|
||||
public @NonNull String getTitle() {
|
||||
return "LAST THREAD DUMP";
|
||||
return "CURRENT THREAD DUMP";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
@@ -11,13 +11,13 @@ import java.util.Date;
|
||||
import java.util.Locale;
|
||||
import java.util.Map;
|
||||
|
||||
public class LogSectionThreadDump implements LogSection {
|
||||
public class LogSectionSuspiciousThreadDump implements LogSection {
|
||||
|
||||
private static final SimpleDateFormat DATE_FORMAT = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.SSS zzz", Locale.US);
|
||||
|
||||
@Override
|
||||
public @NonNull String getTitle() {
|
||||
return "LAST THREAD DUMP";
|
||||
return "LAST SUSPICIOUS THREAD DUMP";
|
||||
}
|
||||
|
||||
@Override
|
||||
@@ -94,7 +94,7 @@ public class SubmitDebugLogRepository {
|
||||
add(new LogSectionPermissions());
|
||||
add(new LogSectionTrace());
|
||||
add(new LogSectionThreads());
|
||||
add(new LogSectionThreadDump());
|
||||
add(new LogSectionSuspiciousThreadDump());
|
||||
add(new LogSectionCurrentThreadDump());
|
||||
if (RemoteConfig.internalUser()) {
|
||||
add(new LogSectionSenderKey());
|
||||
|
||||
Reference in New Issue
Block a user