heshaofeng
2026-01-06 396187f90061319f013ad72bf04cb4804d1596cd
1
2
3
4
5
6
7
namespace LogLibrary.Log
{
    public interface ILogFactory
    {
        ILog GetLog(string name);
    }
}