From 7aab0f2c42e36397bbcd0369abd1b874bbf047be Mon Sep 17 00:00:00 2001 From: Richard Acayan Date: Thu, 16 May 2024 15:55:53 -0400 Subject: [PATCH] meson.options: disable verbose logging by default Verbose logging can be useful when something goes wrong, but HexagonRPCD already works well on some devices. Disable verbose logging by default. Reported by Adrian on the SDM845 Mainline Matrix channel. Fixes: 30fa49eb2020 ("build: add hexagonrpcd_verbose option") --- meson.options | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.options b/meson.options index 62dd8f2..503eb7f 100644 --- a/meson.options +++ b/meson.options @@ -1,2 +1,2 @@ -option('hexagonrpcd_verbose', type : 'boolean', value : true, +option('hexagonrpcd_verbose', type : 'boolean', value : false, description : 'Compile hexagonrpcd with extra logging for each remote method invocation')