⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 basicconfigurator.java

📁 实现在电脑平台上控制短信modem或手机进行通讯的jar包和相关实例
💻 JAVA
字号:
/* * Copyright (C) The Apache Software Foundation. All rights reserved. * * This software is published under the terms of the Apache Software * License version 1.1, a copy of which has been included with this * distribution in the LICENSE.txt file.  */// Contibutors: "Luke Blanshard" <Luke@quiq.com>//              "Mark DONSZELMANN" <Mark.Donszelmann@cern.ch>//              "Muly Oved" <mulyoved@hotmail.com>package org.apache.log4j;/**   Use this class to quickly configure the package.   <p>For file based configuration see {@link   PropertyConfigurator}. For XML based configuration see {@link   org.apache.log4j.xml.DOMConfigurator DOMConfigurator}.   @since 0.8.1   @author Ceki G&uuml;lc&uuml; */public class BasicConfigurator {  protected BasicConfigurator() {  }  /**     Add a {@link ConsoleAppender} that uses {@link PatternLayout}     using the {@link PatternLayout#TTCC_CONVERSION_PATTERN} and     prints to <code>System.out</code> to the root category.  */  static  public  void configure() {    Logger root = Logger.getRootLogger();    root.addAppender(new ConsoleAppender(           new PatternLayout(PatternLayout.TTCC_CONVERSION_PATTERN)));  }  /**     Add <code>appender</code> to the root category.     @param appender The appender to add to the root category.  */  static  public  void configure(Appender appender) {    Logger root = Logger.getRootLogger();    root.addAppender(appender);  }  /**     Reset the default hierarchy to its defaut. It is equivalent to     calling     <code>Category.getDefaultHierarchy().resetConfiguration()</code>.     See {@link Hierarchy#resetConfiguration()} for more details.  */  public  static  void resetConfiguration() {    LogManager.resetConfiguration();  }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -