Turn off debug logging.

Debug logging was accidentally turned on in a previous commit.

Bug: 145551233
Test: N/A
Change-Id: I4522a1919179d26b5db350742c6b3cee6e0ce555
This commit is contained in:
Kweku Adams
2020-03-04 10:37:57 -08:00
parent 9d95b2bf8e
commit a52d533dda

View File

@@ -130,7 +130,8 @@ import java.util.concurrent.CountDownLatch;
public class AppStandbyController implements AppStandbyInternal {
private static final String TAG = "AppStandbyController";
static final boolean DEBUG = true;
// Do not submit with true.
static final boolean DEBUG = false;
static final boolean COMPRESS_TIME = false;
private static final long ONE_MINUTE = 60 * 1000;