1
heshaofeng
2026-03-12 070b9f3ea747fc763f999e4cc6b86b202f48a237
1
2
3
4
5
6
7
namespace LogLibrary.Log
{
    public interface ILogFactory
    {
        ILog GetLog(string name);
    }
}