You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// A collection of exception types that will not be handled by the policy. These exceptions will be thrown immediately without retrying. Default includes OperationCanceledException.
/// Gets or sets the logger for this circuit breaker.
346
347
/// </summary>
347
-
publicILoggerLogger{
348
+
publicILoggerLogger
349
+
{
348
350
get=>_logger;
349
351
set=>_logger=value??NullLogger.Instance;
350
352
}
@@ -372,7 +374,7 @@ public ILogger Logger {
372
374
/// <summary>
373
375
/// A collection of exception types that will not be recorded by the circuit breaker. These exceptions will not trigger the circuit breaker to open. Default includes OperationCanceledException.
0 commit comments