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

Commit 00001111 authored by Billy Lau's avatar Billy Lau
Browse files

BinaryTransparencyService: Set DEBUG flag to false.

A DEBUG flag was introduced prior to guard some of the more
verbose and noisy logging methods.

Now that the development is largely done, we are ready to set this
flag to be false for production.

Bug: 259493439
Test: Manual. atest BinaryTransparencyServiceTest.
Change-Id: I975d17776473532c86b0395efcc2e3862a65dac0
parent aa59953a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -119,7 +119,7 @@ public class BinaryTransparencyService extends SystemService {
    // used for indicating newly installed MBAs that are updated (but unused currently)
    static final int MBA_STATUS_UPDATED_NEW_INSTALL = 4;

    private static final boolean DEBUG = true;     // set this to false upon submission
    private static final boolean DEBUG = false;     // toggle this for local debug

    private final Context mContext;
    private String mVbmetaDigest;