ICommonLog.cs 245 B

123456789101112131415
  1. 
  2. namespace Aitex.Core.RT.Log
  3. {
  4. public interface ICommonLog
  5. {
  6. void Debug(string message);
  7. void Info(string message);
  8. void Warning(string message);
  9. void Error(string message);
  10. }
  11. }