647556386
2026-01-09 7354151f37391cc27462bc9d787c79f624f6e50e
1
2
3
4
5
6
7
namespace LogLibrary.Log
{
    public interface ILogFactory
    {
        ILog GetLog(string name);
    }
}