heshaofeng
2026-04-09 ca3e4977395bc02c5d147dffdff7381333fdfbca
1
2
3
4
5
6
7
namespace LogLibrary.Log
{
    public interface ILogFactory
    {
        ILog GetLog(string name);
    }
}