Add processor information to debug log.

This commit is contained in:
Nicholas Tinsley
2024-04-11 16:09:33 -04:00
parent abfd9f8f41
commit 09404157aa

View File

@@ -55,6 +55,8 @@ public class LogSectionSystemInfo implements LogSection {
builder.append("Manufacturer : ").append(Build.MANUFACTURER).append("\n");
builder.append("Model : ").append(Build.MODEL).append("\n");
builder.append("Product : ").append(Build.PRODUCT).append("\n");
builder.append("SoC Manufacturer : ").append(Build.VERSION.SDK_INT >= 31 ? Build.SOC_MANUFACTURER : "N/A").append("\n");
builder.append("SoC Model : ").append(Build.VERSION.SDK_INT >= 31 ? Build.SOC_MODEL : "N/A").append("\n");
builder.append("Screen : ").append(getScreenResolution(context)).append(", ")
.append(ScreenDensity.get(context)).append(", ")
.append(getScreenRefreshRate(context)).append("\n");