using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace CY.Infrastructure.Logging { /// /// 日志接口 /// public interface ILogger { void Log(string message); void Log(Exception ex); } }