From 6d24b2ff8753492267f25bfa2f4e2a1a2504b219 Mon Sep 17 00:00:00 2001 From: Jaewan Kim Date: Fri, 28 Oct 2022 10:40:51 +0900 Subject: [PATCH] Disable verbose nlinterceptor log Causing problems for folks trying to read logs in b/287414933 - should have been disabled previously. Test: No verbose log on Cloud Android with Wi-Fi is turned on Bug: 256518068 (cherry picked from https://googleplex-android-review.googlesource.com/q/commit:7df5c1c34538d1e051dc3df63fcba563e40713c8) Merged-In: I062e698b64114f139997cd24b16f90dd52048247 Change-Id: I062e698b64114f139997cd24b16f90dd52048247 --- wifi/netlinkinterceptor/aidl/default/InterceptorRelay.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wifi/netlinkinterceptor/aidl/default/InterceptorRelay.cpp b/wifi/netlinkinterceptor/aidl/default/InterceptorRelay.cpp index ded9122a6f..e84a5cf817 100644 --- a/wifi/netlinkinterceptor/aidl/default/InterceptorRelay.cpp +++ b/wifi/netlinkinterceptor/aidl/default/InterceptorRelay.cpp @@ -28,7 +28,7 @@ namespace android::nlinterceptor { using namespace std::chrono_literals; static constexpr std::chrono::milliseconds kPollTimeout = 300ms; -static constexpr bool kSuperVerbose = true; +static constexpr bool kSuperVerbose = false; InterceptorRelay::InterceptorRelay(uint32_t nlFamily, uint32_t clientNlPid, const std::string& clientName)