mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-02-24 12:11:09 +01:00
23 lines
701 B
C++
23 lines
701 B
C++
#include "pch.h"
|
|
#include "trace.h"
|
|
|
|
#include <common/Telemetry/TraceBase.h>
|
|
|
|
TRACELOGGING_DEFINE_PROVIDER(
|
|
g_hProvider,
|
|
"Microsoft.PowerToys",
|
|
// {38e8889b-9731-53f5-e901-e8a7c1753074}
|
|
(0x38e8889b, 0x9731, 0x53f5, 0xe9, 0x01, 0xe8, 0xa7, 0xc1, 0x75, 0x30, 0x74),
|
|
TraceLoggingOptionProjectTelemetry());
|
|
|
|
void Trace::MyEvent()
|
|
{
|
|
TraceLoggingWriteWrapper(
|
|
g_hProvider,
|
|
"PowerToyName_MyEvent",
|
|
ProjectTelemetryPrivacyDataTag(ProjectTelemetryTag_ProductAndServicePerformance),
|
|
TraceLoggingBoolean(TRUE, "UTCReplace_AppSessionGuid"),
|
|
TraceLoggingKeyword(PROJECT_KEYWORD_MEASURE),
|
|
TraceLoggingEventTag(MICROSOFT_EVENTTAG_DROP_PII));
|
|
}
|