================ @@ -28,6 +29,17 @@ namespace lldb_private { namespace telemetry { +struct LLDBConfig : public ::llvm::telemetry::Config { + // If true, we will collect full details about a debug command (eg., args and + // original command). Note: This may contain PII, hence can only be enabled by + // the vendor while creating the Manager. + const bool m_detailed_command_telemetry; ---------------- JDevlieghere wrote:
Ack, I think this is fine as is. Given that this is a `struct`, please drop the `m_` prefix. ```suggestion // If true, we will collect full details about a debug command (eg., args and // original command). Note: This may contain PII, hence can only be enabled by // the vendor while creating the Manager. const bool detailed_command_telemetry; ``` https://github.com/llvm/llvm-project/pull/129354 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits