ICommonLog.cs 399 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Aitex.DataAnalysis.Log
  6. {
  7. public interface ICommonLog
  8. {
  9. void Info(string message, bool isTraceOn);
  10. void Warning(string message);
  11. void Error(string message);
  12. void Warning(string message, Exception ex);
  13. void Error(string message, Exception ex);
  14. }
  15. }