mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-24 09:54:58 +00:00
18 lines
450 B
C#
18 lines
450 B
C#
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 ILogStringsWithLevel : IKeyed
|
|
{
|
|
/// <summary>
|
|
/// Defines a class that is capable of logging a string with an int level
|
|
/// </summary>
|
|
void SendToLog(IKeyed device, Debug.ErrorLogLevel level,string logMessage);
|
|
}
|
|
|
|
} |