We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ba210a commit 13a445eCopy full SHA for 13a445e
CHANGELOG.md
@@ -9,6 +9,7 @@
9
### Fixes
10
11
- Attachments support regression introduced in v0.2.0 ([#80](https://github.com/getsentry/sentry-powershell/pull/80))
12
+- Diagnostic logs: exceptions didn't have full context ([#81](https://github.com/getsentry/sentry-powershell/pull/81))
13
14
### Features
15
modules/Sentry/private/DiagnosticLogger.ps1
@@ -28,7 +28,7 @@ class DiagnosticLogger : Sentry.Extensibility.IDiagnosticLogger
28
if ($null -ne $exception)
29
{
30
$message += [Environment]::NewLine
31
- $message += $exception | Format-Table | Out-String
+ $message += $exception | Out-String
32
}
33
34
switch ($level)
0 commit comments