summaryrefslogtreecommitdiff
path: root/src/Notepad/Infrastructure/Logging/ILogFactory.cs
blob: ce1d2e1a1c18a00f0a510ef0b603b3d4c9429576 (plain)
1
2
3
4
5
6
7
using System;

namespace Notepad.Infrastructure.Logging {
    public interface ILogFactory {
        ILogger CreateFor(Type typeToCreateLoggerFor);
    }
}