刘磊
2024-11-23 4c511d29869878c7a7ea015cbac4367faeb0e27b
1
2
3
4
5
6
7
namespace LogLibrary.Log
{
    public interface ILogFactory
    {
        ILog GetLog(string name);
    }
}