Disable verbose logging in media converter.

This commit is contained in:
Nicholas Tinsley 2024-06-10 14:38:19 -04:00
parent 173ee95e62
commit 65dc0d3f34

View file

@ -45,7 +45,7 @@ import java.lang.annotation.RetentionPolicy;
@SuppressWarnings("WeakerAccess")
public final class MediaConverter {
private static final String TAG = "media-converter";
private static final boolean VERBOSE = true; // lots of logging
private static final boolean VERBOSE = false; // lots of logging
// Describes when the annotation will be discarded
@Retention(RetentionPolicy.SOURCE)