刘磊
2024-12-27 442c3d4ed659b05e960e7f2747b41c8488793905
1
2
3
4
5
6
7
namespace LogLibrary.Log
{
    public interface ILogFactory
    {
        ILog GetLog(string name);
    }
}