public static void test() { AbstractLogger loggerChain = GetChainOfLoggers(); loggerChain.LogMessage(AbstractLogger.INFO, "This is an information."); loggerChain.LogMessage(AbstractLogger.DEBUG, "This is a debug level information."); loggerChain.LogMessage(AbstractLogger.ERROR, "This is an error information."); }
public void SetNextLogger(AbstractLogger nextLogger) { this.NextLogger = nextLogger; }