ICommonLog.cs 484 B

123456789101112131415161718
  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, string stackFile);
  11. void Error(string message, string stackFile);
  12. void Warning(string message, Exception ex, string stackFile);
  13. void Error(string message, Exception ex, string stackFile);
  14. }
  15. }