heshaofeng
2026-01-28 b248c15b167523b887d2aa019d4157f0c16ed3bc
1
2
3
4
5
6
7
namespace LogLibrary.Log
{
    public interface ILogFactory
    {
        ILog GetLog(string name);
    }
}