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

Commit 66bbaaf8 authored by Mohammed Althaf T's avatar Mohammed Althaf T 😊
Browse files

camera: Log if its debug build

parent 0f25936f
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
package net.sourceforge.opencamera;

import foundation.e.camera.BuildConfig;

/** Global constant to control logging, should always be set to false in
 *  released versions.
 */
public class MyDebug {
    public static final boolean LOG = false;
    public static final boolean LOG = BuildConfig.DEBUG;
}