Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit acb18da7 authored by Tobias Kaminsky's avatar Tobias Kaminsky Committed by GitHub
Browse files

Let appendPhoneInfo use new system (#327)

Let appendPhoneInfo use new system
parents b2bed08f 8747f819
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -264,12 +264,12 @@ public class Log_OC {
     * Append the info of the device
     */
    private static void appendPhoneInfo() {
        appendLog("Model: " + android.os.Build.MODEL);
        appendLog("Brand: " + android.os.Build.BRAND);
        appendLog("Product: " + android.os.Build.PRODUCT);
        appendLog("Device: " + android.os.Build.DEVICE);
        appendLog("Version-Codename: " + android.os.Build.VERSION.CODENAME);
        appendLog("Version-Release: " + android.os.Build.VERSION.RELEASE);
        i("Device", "Model: " + android.os.Build.MODEL);
        i("Device", "Brand: " + android.os.Build.BRAND);
        i("Device", "Product: " + android.os.Build.PRODUCT);
        i("Device", "Device: " + android.os.Build.DEVICE);
        i("Device", "Version-Codename: " + android.os.Build.VERSION.CODENAME);
        i("Device", "Version-Release: " + android.os.Build.VERSION.RELEASE);
    }

    /**