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

Commit bb59be81 authored by Mohammed Althaf T's avatar Mohammed Althaf T 😊 Committed by Nishith Khanna
Browse files

camera: Log if its debug build

parent 0b5501c0
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;
}