陈勇
2024-11-18 3dedd7d65f61d09a1117e2586dd71b9e433e6b8b
1
2
3
4
5
6
7
namespace LogLibrary.Log
{
    public interface ILogFactory
    {
        ILog GetLog(string name);
    }
}