123456789101112131415161718 |
- 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, string stackFile);
- void Error(string message, string stackFile);
- void Warning(string message, Exception ex, string stackFile);
- void Error(string message, Exception ex, string stackFile);
- }
- }
|