ICommonLog.cs 522 B

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