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

Commit 5e1ba06e authored by Joe Onorato's avatar Joe Onorato Committed by android-build-merger
Browse files

Merge "Turn off verbose logs and remove log that is covered by verbose logs." into nyc-dev

am: a8a644e5

* commit 'a8a644e5':
  Turn off verbose logs and remove log that is covered by verbose logs.
parents 4629ac73 a8a644e5
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -1041,7 +1041,9 @@ public final class PrintSpoolerService extends Service {
            try {
                in = mStatePersistFile.openRead();
            } catch (FileNotFoundException e) {
                Log.i(LOG_TAG, "No existing print spooler state.");
                if (DEBUG_PERSISTENCE) {
                    Log.d(LOG_TAG, "No existing print spooler state.");
                }
                return;
            }
            try {
+1 −1
Original line number Diff line number Diff line
@@ -60,7 +60,7 @@ import java.util.Set;
public class StorageMeasurement {
    private static final String TAG = "StorageMeasurement";

    private static final boolean LOCAL_LOGV = true;
    private static final boolean LOCAL_LOGV = false;
    static final boolean LOGV = LOCAL_LOGV && Log.isLoggable(TAG, Log.VERBOSE);

    private static final String DEFAULT_CONTAINER_PACKAGE = "com.android.defcontainer";
+0 −2
Original line number Diff line number Diff line
@@ -509,8 +509,6 @@ public class ApfFilter {
        mLastInstalledProgram = program;
        if (VDBG) {
            hexDump("Installing filter: ", program, program.length);
        } else {
            Log.d(TAG, "Installing filter length=" + program.length);
        }
        mConnectivityService.pushApfProgramToNetwork(mNai, program);
    }
+1 −1
Original line number Diff line number Diff line
@@ -52,7 +52,7 @@ import java.util.concurrent.atomic.AtomicInteger;
 */
class NetworkStatsObservers {
    private static final String TAG = "NetworkStatsObservers";
    private static final boolean LOGV = true;
    private static final boolean LOGV = false;

    private static final long MIN_THRESHOLD_BYTES = 2 * MB_IN_BYTES;