diff --git a/CHANGELOG.md b/CHANGELOG.md index dd4dc782..43660df3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Fixed + +- Remove unredacted request URI from log files on exception + ## [4.1.1] - 2023-01-06 ### Changed diff --git a/src/Recyclarr.Cli/Command/BaseCommand.cs b/src/Recyclarr.Cli/Command/BaseCommand.cs index 5fcde7f0..eaeabc8e 100644 --- a/src/Recyclarr.Cli/Command/BaseCommand.cs +++ b/src/Recyclarr.Cli/Command/BaseCommand.cs @@ -79,7 +79,7 @@ public abstract class BaseCommand : ICommand break; } - Logger.Debug(e, "Exception"); + Logger.Debug("Exception Stacktrace: {Stacktrace}", e.StackTrace); throw new CommandException("Exiting due to exception"); } finally