From 163ffbf46acfe5cf4162bcc3962f5a62592a0e26 Mon Sep 17 00:00:00 2001 From: Hansjoerg Petriffer Date: Thu, 27 Aug 2026 07:34:38 +0200 Subject: [PATCH] Logging Exception with stacktrace and as arror --- src/VisualStudio/Support/Logger.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/VisualStudio/Support/Logger.cs b/src/VisualStudio/Support/Logger.cs index 856699b54f..02ad68013b 100644 --- a/src/VisualStudio/Support/Logger.cs +++ b/src/VisualStudio/Support/Logger.cs @@ -402,7 +402,7 @@ public void Error(string sMsg) public void Exception(Exception e, string sMsg) { - Logger.Debug(sMsg); + Logger.Exception(e, sMsg); } public void Information(string sMsg)