using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Central.Control.WebApi.Log4net { /// /// /// public interface ILog4NetHelper { void Debug(object message); void Debug(object message, Exception ex); void Error(object message); void Error(object message, Exception exception); void Info(object message); void Info(object message, Exception ex); void Warn(object message); void Warn(object message, Exception ex); } }