i_log.java
来自「java开源的企业总线.xmlBlaster」· Java 代码 · 共 23 行
JAVA
23 行
/*------------------------------------------------------------------------------Name: I_Log.javaProject: xmlBlaster.orgCopyright: xmlBlaster.org, see xmlBlaster-LICENSE file------------------------------------------------------------------------------*/package org.xmlBlaster.client.protocol.http.common;/** * You can redirect the logging output of the xmlBlaster applet client library. * @author <a href="mailto:xmlBlaster@marcelruff.info">Marcel Ruff</a>. */public interface I_Log{ /** * Receive the logging. * @param location The class and/or method name * @param level One of "ERROR", "WARN", "INFO", "DEBUG" * @param text The text to log */ public void log(String location, String level, String text);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?