diff options
| author | 2023-04-03 19:59:52 +0000 | |
|---|---|---|
| committer | 2023-04-03 19:59:52 +0000 | |
| commit | de964904f3992859b276f92472d59ef2ffdb55c6 (patch) | |
| tree | 451f177e73448501a82d210cd031c0cc88b5fe32 | |
| parent | b8a1b57bb9f9e4a9f8b6ba72a63e981664315391 (diff) | |
ManifestConfigSource: disable debug mode
Due to many 'No Network Security Config' logs on cf.
Bug: N/A
Test: N/A
Change-Id: I2f7dfab94cb5522931c44ed9cffc9aa541f15707
| -rw-r--r-- | core/java/android/security/net/config/ManifestConfigSource.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/security/net/config/ManifestConfigSource.java b/core/java/android/security/net/config/ManifestConfigSource.java index b885e726918d..0e20997d307f 100644 --- a/core/java/android/security/net/config/ManifestConfigSource.java +++ b/core/java/android/security/net/config/ManifestConfigSource.java @@ -25,7 +25,7 @@ import java.util.Set; /** @hide */ public class ManifestConfigSource implements ConfigSource { - private static final boolean DBG = true; + private static final boolean DBG = false; private static final String LOG_TAG = "NetworkSecurityConfig"; private final Object mLock = new Object(); |