From 6e01173f3b0b5de8847cba3400c1890361abd5ca Mon Sep 17 00:00:00 2001 From: Neil Dorin Date: Thu, 12 Mar 2026 16:19:29 -0600 Subject: [PATCH] feat: rename IHasDestinationList to IHasDestinations for consistency --- src/PepperDash.Essentials.Core/Room/IHasDestinationList.cs | 2 +- .../Routing/RoutingFeedbackManager.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/PepperDash.Essentials.Core/Room/IHasDestinationList.cs b/src/PepperDash.Essentials.Core/Room/IHasDestinationList.cs index bab1b3d2..bd605ad4 100644 --- a/src/PepperDash.Essentials.Core/Room/IHasDestinationList.cs +++ b/src/PepperDash.Essentials.Core/Room/IHasDestinationList.cs @@ -6,7 +6,7 @@ namespace PepperDash.Essentials.Core /// /// Interface for rooms with a list of destinations /// - public interface IHasDestinationList + public interface IHasDestinations { /// /// Gets the dictionary of destinations. diff --git a/src/PepperDash.Essentials.Core/Routing/RoutingFeedbackManager.cs b/src/PepperDash.Essentials.Core/Routing/RoutingFeedbackManager.cs index e5d61bfd..c72b31ff 100644 --- a/src/PepperDash.Essentials.Core/Routing/RoutingFeedbackManager.cs +++ b/src/PepperDash.Essentials.Core/Routing/RoutingFeedbackManager.cs @@ -255,7 +255,7 @@ namespace PepperDash.Essentials.Core.Routing return; } - // Debug.LogMessage(Serilog.Events.LogEventLevel.Verbose, "Found room {room} for destination {destination}", this, room.Key, destination.Key); + Debug.LogMessage(Serilog.Events.LogEventLevel.Verbose, "Found room {room} for destination {destination}", this, room.Key, destination.Key); Dictionary sourceList = null;