肖洋
2024-11-20 2f4b2e851342ff3b1b0b0ac4f92ece595b0a70e6
1
2
3
4
5
6
7
namespace LogLibrary.Log
{
    public interface ILogFactory
    {
        ILog GetLog(string name);
    }
}