刘磊
2026-01-22 1924bdeca6414b6fec314c37260b44f20865d593
1
2
3
4
5
6
7
namespace LogLibrary.Log
{
    public interface ILogFactory
    {
        ILog GetLog(string name);
    }
}