View Javadoc
1   /**
2    * Logback: the reliable, generic, fast and flexible logging framework.
3    * Copyright (C) 1999-2015, QOS.ch. All rights reserved.
4    *
5    * This program and the accompanying materials are dual-licensed under
6    * either the terms of the Eclipse Public License v1.0 as published by
7    * the Eclipse Foundation
8    *
9    *   or (per the licensee's choosing)
10   *
11   * under the terms of the GNU Lesser General Public License version 2.1
12   * as published by the Free Software Foundation.
13   */
14  package ch.qos.logback.classic.issue.lbcore211;
15  
16  import ch.qos.logback.classic.Logger;
17  import ch.qos.logback.classic.LoggerContext;
18  import ch.qos.logback.classic.joran.JoranConfigurator;
19  import ch.qos.logback.core.joran.spi.JoranException;
20  import ch.qos.logback.core.util.StatusPrinter;
21  
22  import org.junit.Ignore;
23  import org.junit.Test;
24  import org.slf4j.LoggerFactory;
25  
26  /**
27   * @author Ceki Gülcü
28   */
29  @Ignore
30  public class Lbcore211 {
31  
32      @Test
33      public void lbcore211() throws JoranException {
34  
35          LoggerContext lc = (LoggerContext) LoggerFactory.getILoggerFactory();
36  
37          JoranConfigurator configurator = new JoranConfigurator();
38          configurator.setContext(lc);
39          lc.reset();
40          configurator.doConfigure("/home/ceki/lbcore211.xml");
41  
42          Logger l = lc.getLogger("file.logger");
43          StatusPrinter.print(lc);
44          for (int i = 0; i < 10; i++) {
45              l.info("hello " + i);
46          }
47  
48          lc.stop();
49      }
50  }