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

Commit 8b12fac0 authored by David Luhmer's avatar David Luhmer
Browse files

make Log a utility class

parent dcd9c5c4
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -2,6 +2,9 @@ package android.util;

// https://stackoverflow.com/questions/36787449/how-to-mock-method-e-in-log
public class Log {

    private Log() { }

    public static int d(String tag, String msg) {
        System.out.println("DEBUG: " + tag + ": " + msg);
        return 0;