heshaofeng
2025-12-23 917fcfa0149b5e9a6bb23cbb31decbaaa02b19ae
1
2
3
4
5
6
7
namespace LogLibrary.Log
{
    public interface ILogFactory
    {
        ILog GetLog(string name);
    }
}