Ejemplo n.º 1
0
        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.");
        }
Ejemplo n.º 2
0
 public void SetNextLogger(AbstractLogger nextLogger)
 {
     this.NextLogger = nextLogger;
 }