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