using System; using System.Collections.Generic; using System.Linq; using System.Text; using Taloyhtio.GeneralSSO.Server.CodeFiles.Entities; namespace Taloyhtio.GeneralSSO.Server.CodeFiles.Services { public interface ILogger { void Log(EventType type, string component, string msg); void Info(string component, string msg); void Warn(string component, string msg); void Error(string component, string msg); void Error(string component, Exception x); } }