trace.h
1 #pragma once 2 3 #include <common/Telemetry/TraceBase.h> 4 5 class Trace : public telemetry::TraceBase 6 { 7 public: 8 // Log if the user has HostsFileEditor enabled or disabled 9 static void EnableHostsFileEditor(const bool enabled) noexcept; 10 11 // Log that the user tried to activate the editor 12 static void ActivateEditor() noexcept; 13 };