From 7e80be5ca01ea60efdb9a38292533f72100ac4c2 Mon Sep 17 00:00:00 2001 From: Greyson Parrelli Date: Mon, 30 Mar 2020 15:24:29 -0400 Subject: [PATCH] Separate out model info in debug logs. --- .../securesms/logsubmit/LogSectionSystemInfo.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/src/main/java/org/thoughtcrime/securesms/logsubmit/LogSectionSystemInfo.java b/app/src/main/java/org/thoughtcrime/securesms/logsubmit/LogSectionSystemInfo.java index 29dbefac19..c5a135b3ce 100644 --- a/app/src/main/java/org/thoughtcrime/securesms/logsubmit/LogSectionSystemInfo.java +++ b/app/src/main/java/org/thoughtcrime/securesms/logsubmit/LogSectionSystemInfo.java @@ -31,9 +31,9 @@ public class LogSectionSystemInfo implements LogSection { final StringBuilder builder = new StringBuilder(); builder.append("Time : ").append(System.currentTimeMillis()).append('\n'); - builder.append("Device : ").append(Build.MANUFACTURER).append(" ") - .append(Build.MODEL).append(" (") - .append(Build.PRODUCT).append(")\n"); + 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("Android : ").append(Build.VERSION.RELEASE).append(" (") .append(Build.VERSION.INCREMENTAL).append(", ") .append(Build.DISPLAY).append(")\n");