huanghongfeng
2024-12-11 dfea94129c7d203aaaab8d0f6514aee74258e6a1
1
2
3
4
5
6
7
namespace LogLibrary.Log
{
    public interface ILogFactory
    {
        ILog GetLog(string name);
    }
}