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