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

Commit 0a68f17b authored by Jeff DeCew's avatar Jeff DeCew
Browse files

Ensure LogBuffers are debuggable in gradle build

Bug: 205964489
Test: adb shell settings put global systemui/buffer/NotifLog verbose
Change-Id: Ibd5e40f6449c16b4ff5f9863fa85d5871f0706ae
parent a1dd246c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -147,7 +147,7 @@ public class LogModule {
    public static LogcatEchoTracker provideLogcatEchoTracker(
            ContentResolver contentResolver,
            @Main Looper looper) {
        if (Build.IS_DEBUGGABLE) {
        if (Build.isDebuggable()) {
            return LogcatEchoTrackerDebug.create(contentResolver, looper);
        } else {
            return new LogcatEchoTrackerProd();