亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? simplelog.java

?? Jakarta小組開發的可集成在各種系統中的共用登入管理程序。
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:
    }    /**     * <p>Write the content of the message accumulated in the specified     * <code>StringBuffer</code> to the appropriate output destination.  The     * default implementation writes to <code>System.err</code>.</p>     *     * @param buffer A <code>StringBuffer</code> containing the accumulated     *  text to be logged     */    protected void write(StringBuffer buffer) {        System.err.println(buffer.toString());    }    /**     * Is the given log level currently enabled?     *     * @param logLevel is this level enabled?     */    protected boolean isLevelEnabled(int logLevel) {        // log level are numerically ordered so can use simple numeric        // comparison        return (logLevel >= currentLogLevel);    }    // -------------------------------------------------------- Log Implementation    /**     * <p> Log a message with debug log level.</p>     */    public final void debug(Object message) {        if (isLevelEnabled(SimpleLog.LOG_LEVEL_DEBUG)) {            log(SimpleLog.LOG_LEVEL_DEBUG, message, null);        }    }    /**     * <p> Log an error with debug log level.</p>     */    public final void debug(Object message, Throwable t) {        if (isLevelEnabled(SimpleLog.LOG_LEVEL_DEBUG)) {            log(SimpleLog.LOG_LEVEL_DEBUG, message, t);        }    }    /**     * <p> Log a message with trace log level.</p>     */    public final void trace(Object message) {        if (isLevelEnabled(SimpleLog.LOG_LEVEL_TRACE)) {            log(SimpleLog.LOG_LEVEL_TRACE, message, null);        }    }    /**     * <p> Log an error with trace log level.</p>     */    public final void trace(Object message, Throwable t) {        if (isLevelEnabled(SimpleLog.LOG_LEVEL_TRACE)) {            log(SimpleLog.LOG_LEVEL_TRACE, message, t);        }    }    /**     * <p> Log a message with info log level.</p>     */    public final void info(Object message) {        if (isLevelEnabled(SimpleLog.LOG_LEVEL_INFO)) {            log(SimpleLog.LOG_LEVEL_INFO,message,null);        }    }    /**     * <p> Log an error with info log level.</p>     */    public final void info(Object message, Throwable t) {        if (isLevelEnabled(SimpleLog.LOG_LEVEL_INFO)) {            log(SimpleLog.LOG_LEVEL_INFO, message, t);        }    }    /**     * <p> Log a message with warn log level.</p>     */    public final void warn(Object message) {        if (isLevelEnabled(SimpleLog.LOG_LEVEL_WARN)) {            log(SimpleLog.LOG_LEVEL_WARN, message, null);        }    }    /**     * <p> Log an error with warn log level.</p>     */    public final void warn(Object message, Throwable t) {        if (isLevelEnabled(SimpleLog.LOG_LEVEL_WARN)) {            log(SimpleLog.LOG_LEVEL_WARN, message, t);        }    }    /**     * <p> Log a message with error log level.</p>     */    public final void error(Object message) {        if (isLevelEnabled(SimpleLog.LOG_LEVEL_ERROR)) {            log(SimpleLog.LOG_LEVEL_ERROR, message, null);        }    }    /**     * <p> Log an error with error log level.</p>     */    public final void error(Object message, Throwable t) {        if (isLevelEnabled(SimpleLog.LOG_LEVEL_ERROR)) {            log(SimpleLog.LOG_LEVEL_ERROR, message, t);        }    }    /**     * <p> Log a message with fatal log level.</p>     */    public final void fatal(Object message) {        if (isLevelEnabled(SimpleLog.LOG_LEVEL_FATAL)) {            log(SimpleLog.LOG_LEVEL_FATAL, message, null);        }    }    /**     * <p> Log an error with fatal log level.</p>     */    public final void fatal(Object message, Throwable t) {        if (isLevelEnabled(SimpleLog.LOG_LEVEL_FATAL)) {            log(SimpleLog.LOG_LEVEL_FATAL, message, t);        }    }    /**     * <p> Are debug messages currently enabled? </p>     *     * <p> This allows expensive operations such as <code>String</code>     * concatenation to be avoided when the message will be ignored by the     * logger. </p>     */    public final boolean isDebugEnabled() {        return isLevelEnabled(SimpleLog.LOG_LEVEL_DEBUG);    }    /**     * <p> Are error messages currently enabled? </p>     *     * <p> This allows expensive operations such as <code>String</code>     * concatenation to be avoided when the message will be ignored by the     * logger. </p>     */    public final boolean isErrorEnabled() {        return isLevelEnabled(SimpleLog.LOG_LEVEL_ERROR);    }    /**     * <p> Are fatal messages currently enabled? </p>     *     * <p> This allows expensive operations such as <code>String</code>     * concatenation to be avoided when the message will be ignored by the     * logger. </p>     */    public final boolean isFatalEnabled() {        return isLevelEnabled(SimpleLog.LOG_LEVEL_FATAL);    }    /**     * <p> Are info messages currently enabled? </p>     *     * <p> This allows expensive operations such as <code>String</code>     * concatenation to be avoided when the message will be ignored by the     * logger. </p>     */    public final boolean isInfoEnabled() {        return isLevelEnabled(SimpleLog.LOG_LEVEL_INFO);    }    /**     * <p> Are trace messages currently enabled? </p>     *     * <p> This allows expensive operations such as <code>String</code>     * concatenation to be avoided when the message will be ignored by the     * logger. </p>     */    public final boolean isTraceEnabled() {        return isLevelEnabled(SimpleLog.LOG_LEVEL_TRACE);    }    /**     * <p> Are warn messages currently enabled? </p>     *     * <p> This allows expensive operations such as <code>String</code>     * concatenation to be avoided when the message will be ignored by the     * logger. </p>     */    public final boolean isWarnEnabled() {        return isLevelEnabled(SimpleLog.LOG_LEVEL_WARN);    }    /**     * Return the thread context class loader if available.     * Otherwise return null.     *     * The thread context class loader is available for JDK 1.2     * or later, if certain security conditions are met.     *     * @exception LogConfigurationException if a suitable class loader     * cannot be identified.     */    private static ClassLoader getContextClassLoader()    {        ClassLoader classLoader = null;        if (classLoader == null) {            try {                // Are we running on a JDK 1.2 or later system?                Method method = Thread.class.getMethod("getContextClassLoader", null);                // Get the thread context class loader (if there is one)                try {                    classLoader = (ClassLoader)method.invoke(Thread.currentThread(), null);                } catch (IllegalAccessException e) {                    ;  // ignore                } catch (InvocationTargetException e) {                    /**                     * InvocationTargetException is thrown by 'invoke' when                     * the method being invoked (getContextClassLoader) throws                     * an exception.                     *                     * getContextClassLoader() throws SecurityException when                     * the context class loader isn't an ancestor of the                     * calling class's class loader, or if security                     * permissions are restricted.                     *                     * In the first case (not related), we want to ignore and                     * keep going.  We cannot help but also ignore the second                     * with the logic below, but other calls elsewhere (to                     * obtain a class loader) will trigger this exception where                     * we can make a distinction.                     */                    if (e.getTargetException() instanceof SecurityException) {                        ;  // ignore                    } else {                        // Capture 'e.getTargetException()' exception for details                        // alternate: log 'e.getTargetException()', and pass back 'e'.                        throw new LogConfigurationException                            ("Unexpected InvocationTargetException", e.getTargetException());                    }                }            } catch (NoSuchMethodException e) {                // Assume we are running on JDK 1.1                ;  // ignore            }        }        if (classLoader == null) {            classLoader = SimpleLog.class.getClassLoader();        }        // Return the selected class loader        return classLoader;    }    private static InputStream getResourceAsStream(final String name)    {        return (InputStream)AccessController.doPrivileged(            new PrivilegedAction() {                public Object run() {                    ClassLoader threadCL = getContextClassLoader();                    if (threadCL != null) {                        return threadCL.getResourceAsStream(name);                    } else {                        return ClassLoader.getSystemResourceAsStream(name);                    }                }            });    }}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩毛片视频在线看| youjizz国产精品| 国产剧情一区在线| 91国产丝袜在线播放| 亚洲国产精品国自产拍av| 日韩成人免费在线| 欧美午夜不卡在线观看免费| 日韩久久久精品| 午夜久久久久久久久| 99久久夜色精品国产网站| 日韩精品专区在线影院重磅| 亚洲黄色免费网站| 波多野结衣一区二区三区 | 一区二区三区在线视频观看| 九九精品视频在线看| 欧美理论在线播放| 亚洲国产中文字幕| 色综合天天综合狠狠| 亚洲人成精品久久久久| 韩国欧美国产1区| 欧美精品乱码久久久久久| 一区二区三区成人| av午夜精品一区二区三区| 国产人成一区二区三区影院| 精品一区二区在线观看| 精品少妇一区二区三区在线播放 | 韩国毛片一区二区三区| 欧美一区二区三区电影| 午夜在线电影亚洲一区| 日本精品免费观看高清观看| 亚洲欧洲综合另类| 色综合激情五月| 日韩欧美国产小视频| 丝袜a∨在线一区二区三区不卡| 不卡的av网站| 亚洲四区在线观看| 91色.com| 亚洲gay无套男同| 91精品国产综合久久蜜臀| 免费在线观看一区二区三区| 精品国产一区二区精华| 国产很黄免费观看久久| 中文字幕一区二区三区精华液 | 成人亚洲一区二区一| 1024国产精品| 色呦呦日韩精品| 五月天欧美精品| 欧美大片国产精品| 福利一区二区在线观看| 亚洲激情五月婷婷| 欧美一区二区三级| 国产成人午夜视频| 亚洲免费观看高清完整版在线| 99re这里只有精品视频首页| 亚洲午夜影视影院在线观看| 日韩欧美国产三级| 91丨porny丨户外露出| 午夜日韩在线观看| 国产三级欧美三级日产三级99| 风流少妇一区二区| 亚洲123区在线观看| 2020国产成人综合网| 色呦呦网站一区| 蜜桃传媒麻豆第一区在线观看| 精品国产一区二区三区忘忧草 | 天天色天天爱天天射综合| 亚洲精品在线观| 色婷婷av一区| 久久se这里有精品| 一区二区三区欧美视频| 亚洲人成7777| 日韩精品一区国产麻豆| 在线欧美日韩国产| 国产·精品毛片| 视频在线在亚洲| 亚洲视频一二区| 久久久久久免费毛片精品| 欧美亚洲国产怡红院影院| 国产精品一区二区免费不卡| 亚洲综合清纯丝袜自拍| 国产无遮挡一区二区三区毛片日本| 91性感美女视频| 国产一区亚洲一区| 日韩精品一区第一页| 亚洲免费在线播放| 久久九九全国免费| 91精品国产全国免费观看| 91论坛在线播放| 国产真实乱偷精品视频免| 午夜在线成人av| 亚洲黄色在线视频| 中日韩免费视频中文字幕| 欧美成人一区二区| 制服视频三区第一页精品| 91啦中文在线观看| 成人av网站大全| 国产成人精品午夜视频免费| 欧美aaaaa成人免费观看视频| 中文字幕在线观看一区| 国产视频视频一区| 久久网这里都是精品| 91精品国产麻豆国产自产在线 | 日本亚洲免费观看| 亚洲一区二区高清| 一区二区三区四区视频精品免费| 亚洲精品在线一区二区| 精品国产乱码久久久久久蜜臀| 色综合久久久久综合| 99热精品一区二区| www.日韩大片| 波波电影院一区二区三区| 国产91丝袜在线播放0| 国产精品911| 国产成人精品影视| 粉嫩嫩av羞羞动漫久久久| 丰满白嫩尤物一区二区| 国产精品456| 国产不卡一区视频| av在线不卡免费看| 色综合久久88色综合天天免费| 国产激情一区二区三区四区| 国产精品18久久久久久久网站| 久久99精品久久久久久国产越南| 奇米色一区二区| 久久精品久久精品| 国产精品一级黄| eeuss影院一区二区三区| 97精品久久久午夜一区二区三区| 国产mv日韩mv欧美| 色中色一区二区| 欧美精品国产精品| 亚洲精品在线观看网站| 国产欧美日产一区| 夜夜操天天操亚洲| 日本欧美一区二区在线观看| 韩国欧美国产1区| av一区二区三区四区| 欧美性大战久久| 日韩精品一区二区三区视频播放 | 亚洲同性同志一二三专区| 伊人色综合久久天天人手人婷| 亚洲激情在线播放| 久久精品国产成人一区二区三区 | 欧美日韩国产一二三| 欧美成人精精品一区二区频| 日本一区二区三区在线观看| 亚洲卡通欧美制服中文| 男女男精品视频网| 成人福利视频网站| 欧美一区二区在线看| 国产欧美综合在线| 无吗不卡中文字幕| 懂色av中文一区二区三区| 欧美三级电影在线观看| 国产欧美一区二区在线观看| 亚洲成人av中文| 成人午夜大片免费观看| 欧美二区在线观看| 亚洲少妇最新在线视频| 蜜桃视频一区二区三区| 91在线一区二区三区| 日韩精品一区二区三区蜜臀| 亚洲影视在线播放| 大胆亚洲人体视频| 日韩一区二区在线观看| 中文字幕一区二区三区不卡| 国内精品在线播放| 欧美喷潮久久久xxxxx| 亚洲欧美一区二区三区国产精品| 蜜桃久久精品一区二区| 欧美体内she精视频| 中文字幕一区二区在线播放| 经典三级在线一区| 欧美片在线播放| 亚洲精品国产视频| 成人丝袜高跟foot| 久久网站最新地址| 另类小说欧美激情| 欧美一区二区福利在线| 亚洲v中文字幕| 欧美亚洲一区二区三区四区| 1区2区3区国产精品| 丁香激情综合国产| 久久精品亚洲一区二区三区浴池| 午夜精品久久久久久久久久久| av一区二区三区| 国产精品天天摸av网| 国产毛片精品国产一区二区三区| 欧美日韩国产高清一区| 一区二区三区国产豹纹内裤在线| 国产精一品亚洲二区在线视频| 欧美日韩一本到| 亚洲国产一区视频| 欧洲视频一区二区| 亚洲最新在线观看| 色欲综合视频天天天| 一区二区成人在线观看| 日本精品视频一区二区| 亚洲综合色网站| 欧美乱妇一区二区三区不卡视频|