陈勇
2024-11-14 2c4c125072e1b88c994efc9bb6f1ff5ef754d41b
1
2
3
4
5
6
7
namespace LogLibrary.Log
{
    public interface ILogFactory
    {
        ILog GetLog(string name);
    }
}