/// <summary> /// The handle. /// </summary> /// <param name="failedConsumingContext"> /// The failed consuming context. /// </param> public void Handle(IFailedConsumingContext failedConsumingContext) { try { this._handlerAction(failedConsumingContext); } catch (Exception ex) { LogManager.GetCurrentClassLogger(). ErrorFormat("Unable to handle failed message [{0}].", ex, failedConsumingContext.Delivery.Label); } }