fix: Remove unredacted request URI from log files on exception

pull/201/head
Robert Dailey 1 year ago
parent 0c697cf8e4
commit 7ad4654d85

@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [Unreleased]
### Fixed
- Remove unredacted request URI from log files on exception
## [4.1.1] - 2023-01-06 ## [4.1.1] - 2023-01-06
### Changed ### Changed

@ -79,7 +79,7 @@ public abstract class BaseCommand : ICommand
break; break;
} }
Logger.Debug(e, "Exception"); Logger.Debug("Exception Stacktrace: {Stacktrace}", e.StackTrace);
throw new CommandException("Exiting due to exception"); throw new CommandException("Exiting due to exception");
} }
finally finally

Loading…
Cancel
Save