public ConsoleAppender(ILayout layout) { this.Layout = layout; this.ReportLevelThreshold = 0; this.logs = new List <ILog>(); this.logConsole = new LogConsole(); }
// Construct with a name and a console public IMPRINTLog(String Name, ILogConsole Console) { this.Name = Name; this.Console = Console; }
// Create a log with a name and a console public static IMPRINTLog CreateLog(String Name, ILogConsole Console) { return new IMPRINTLog(Name, Console); }