Esempio n. 1
0
        public static void Main(String[] args)
        {
            AbstractLogger loggerChain = getChainOfLoggers();

            loggerChain.logMessage(AbstractLogger.INFO, "This is an information.");

            loggerChain.logMessage(AbstractLogger.DEBUG, "This is an debug level information.");

            loggerChain.logMessage(AbstractLogger.ERROR, "This is an error information.");

            Console.ReadKey();
        }
Esempio n. 2
0
 public void setNextLogger(AbstractLogger nextLogger)
 {
     this.nextLogger = nextLogger;
 }