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: 30fa49eb20 ("build: add hexagonrpcd_verbose option")
This commit is contained in:
Richard Acayan
2024-05-16 15:55:53 -04:00
parent b7eff23db1
commit 7aab0f2c42

View File

@@ -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')