From 2fd925ea34eaf9d8dc7621300656ca4c31cf7fac Mon Sep 17 00:00:00 2001 From: Craig Loewen Date: Mon, 6 Jul 2026 14:19:36 -0400 Subject: [PATCH 1/2] Fix "WSLCCreateContainer" telemetry event --- src/windows/wslcsession/WSLCSession.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/windows/wslcsession/WSLCSession.cpp b/src/windows/wslcsession/WSLCSession.cpp index 6dd12eb7b..2ea622402 100644 --- a/src/windows/wslcsession/WSLCSession.cpp +++ b/src/windows/wslcsession/WSLCSession.cpp @@ -1933,7 +1933,8 @@ try TraceLoggingValue(WSL_PACKAGE_VERSION, "wslVersion"), TraceLoggingValue(containerOptions->Image, "Image"), TraceLoggingValue(m_displayName.c_str(), "SessionName"), - TraceLoggingValue(m_creatorProcessName.c_str(), "CreatorProcess")); + TraceLoggingValue(m_creatorProcessName.c_str(), "CreatorProcess")), + TraceLoggingLevel(WINEVENT_LEVEL_INFO)); return result; } From d72e1531f69111c1274ce6f494646c9280fa7762 Mon Sep 17 00:00:00 2001 From: Craig Loewen Date: Mon, 6 Jul 2026 15:01:02 -0400 Subject: [PATCH 2/2] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- src/windows/wslcsession/WSLCSession.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/windows/wslcsession/WSLCSession.cpp b/src/windows/wslcsession/WSLCSession.cpp index 2ea622402..871d2f1c8 100644 --- a/src/windows/wslcsession/WSLCSession.cpp +++ b/src/windows/wslcsession/WSLCSession.cpp @@ -1933,7 +1933,7 @@ try TraceLoggingValue(WSL_PACKAGE_VERSION, "wslVersion"), TraceLoggingValue(containerOptions->Image, "Image"), TraceLoggingValue(m_displayName.c_str(), "SessionName"), - TraceLoggingValue(m_creatorProcessName.c_str(), "CreatorProcess")), + TraceLoggingValue(m_creatorProcessName.c_str(), "CreatorProcess"), TraceLoggingLevel(WINEVENT_LEVEL_INFO)); return result;