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