1using System; 2 3namespace Notepad.Infrastructure.Logging { 4 public interface ILogFactory { 5 ILogger CreateFor(Type typeToCreateLoggerFor); 6 } 7}