ILog4NetHelper.cs 606 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Central.Control.WebApi.Log4net
  7. {
  8. /// <summary>
  9. ///
  10. /// </summary>
  11. public interface ILog4NetHelper
  12. {
  13. void Debug(object message);
  14. void Debug(object message, Exception ex);
  15. void Error(object message);
  16. void Error(object message, Exception exception);
  17. void Info(object message);
  18. void Info(object message, Exception ex);
  19. void Warn(object message);
  20. void Warn(object message, Exception ex);
  21. }
  22. }