using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Crestron.SimplSharp;
using PepperDash.Core;
namespace PepperDash.Essentials.Core.Interfaces
{
///
/// Defines the contract for ILogStringsWithLevel
///
public interface ILogStringsWithLevel : IKeyed
{
///
/// Defines a class that is capable of logging a string with an int level
///
void SendToLog(IKeyed device, Debug.ErrorLogLevel level,string logMessage);
}
}