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