Package net.sf.uadetector.util

Examples of net.sf.uadetector.util.LowestLogLevelTestLogger


  private static final Logger LOG = LoggerFactory.getLogger(AbstractRefreshableDataStoreTest_LowestLogLevel.class);

  @BeforeClass
  public static void setUp() throws SecurityException, NoSuchFieldException, Exception {
    LOG.info("Deactivating default logger for '" + AbstractRefreshableDataStore.class.getSimpleName() + "'.");
    final Logger log = new LowestLogLevelTestLogger();
    FinalStaticFieldValueChanger.setFinalStatic(AbstractRefreshableDataStore.class.getDeclaredField(FIELD_NAME), log);
  }
View Full Code Here

TOP

Related Classes of net.sf.uadetector.util.LowestLogLevelTestLogger

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.