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