Files
Essentials/essentials-framework/Essentials Core/PepperDashEssentialsBase/Interfaces/ILogStrings.cs

17 lines
402 B
C#

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