刘磊
2024-11-20 7e83137988915123fcfc5294ff0980a46f9f8e17
1
2
3
4
5
6
7
namespace LogLibrary.Log
{
    public interface ILogFactory
    {
        ILog GetLog(string name);
    }
}