1
647556386
2025-12-18 d0de3315024f5da62b4ac38a1a0070dafbe7f43c
1
2
3
4
5
6
7
namespace LogLibrary.Log
{
    public interface ILogFactory
    {
        ILog GetLog(string name);
    }
}