Exemple #1
0
        static void Main(String[] args)
        {
            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.");
        }
Exemple #2
0
 public void setNextLogger(AbstractLogger nextLogger)
 {
     this.nextLogger = nextLogger;
 }