winsw/src/Core/ServiceWrapper/Util/IEventWriter.cs

14 lines
270 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using System.Diagnostics;
namespace winsw.Util
{
public interface IEventWriter
{
void LogEvent(String message);
void LogEvent(String message, EventLogEntryType type);
}
}