Fix name of thread dump log sections.

This commit is contained in:
Greyson Parrelli
2025-09-02 09:35:25 -04:00
parent e083076e40
commit c493fc1c4c
3 changed files with 4 additions and 4 deletions

View File

@@ -15,7 +15,7 @@ public class LogSectionCurrentThreadDump implements LogSection {
@Override
public @NonNull String getTitle() {
return "LAST THREAD DUMP";
return "CURRENT THREAD DUMP";
}
@Override

View File

@@ -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

View File

@@ -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());