mirror of
https://github.com/oxen-io/session-android.git
synced 2025-06-09 14:48:35 +00:00
Separate out model info in debug logs.
This commit is contained in:
parent
989a818a67
commit
7e80be5ca0
@ -31,9 +31,9 @@ public class LogSectionSystemInfo implements LogSection {
|
|||||||
final StringBuilder builder = new StringBuilder();
|
final StringBuilder builder = new StringBuilder();
|
||||||
|
|
||||||
builder.append("Time : ").append(System.currentTimeMillis()).append('\n');
|
builder.append("Time : ").append(System.currentTimeMillis()).append('\n');
|
||||||
builder.append("Device : ").append(Build.MANUFACTURER).append(" ")
|
builder.append("Manufacturer : ").append(Build.MANUFACTURER).append("\n");
|
||||||
.append(Build.MODEL).append(" (")
|
builder.append("Model : ").append(Build.MODEL).append("\n");
|
||||||
.append(Build.PRODUCT).append(")\n");
|
builder.append("Product : ").append(Build.PRODUCT).append("\n");
|
||||||
builder.append("Android : ").append(Build.VERSION.RELEASE).append(" (")
|
builder.append("Android : ").append(Build.VERSION.RELEASE).append(" (")
|
||||||
.append(Build.VERSION.INCREMENTAL).append(", ")
|
.append(Build.VERSION.INCREMENTAL).append(", ")
|
||||||
.append(Build.DISPLAY).append(")\n");
|
.append(Build.DISPLAY).append(")\n");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user