12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Aitex.Core.RT.Log
- {
- public interface ICommonLog
- {
- void Info(string message, bool isTraceOn, string stackFile);
- void Warning(string message);
- void Warning(string message, string stackFile);
- void Error(string message, string stackFile);
- void Warning(string message, Exception ex, string stackFile);
- void Error(string message, Exception ex, string stackFile);
- }
- }
|