using System; using System.Collections.Generic; using System.Linq; using System.Text; using Crestron.SimplSharp; using PepperDash.Core; namespace PepperDash.Essentials.Core.Interfaces { public interface ILogStrings : IKeyed { /// /// Defines a class that is capable of logging a string /// void SendToLog(IKeyed device, string logMessage); } }