浏览代码

jfinal 4.8

James 6 年之前
父节点
当前提交
8d17fe48c1
共有 1 个文件被更改,包括 8 次插入8 次删除
  1. 8 8
      src/main/java/com/jfinal/log/Log4jLog.java

+ 8 - 8
src/main/java/com/jfinal/log/Log4jLog.java

@@ -42,14 +42,6 @@ public class Log4jLog extends Log {
 		return new Log4jLog(name);
 	}
 	
-	public void info(String message) {
-		log.log(callerFQCN, Level.INFO, message, null);
-	}
-	
-	public void info(String message, Throwable t) {
-		log.log(callerFQCN, Level.INFO, message, t);
-	}
-	
 	public void debug(String message) {
 		log.log(callerFQCN, Level.DEBUG, message, null);
 	}
@@ -58,6 +50,14 @@ public class Log4jLog extends Log {
 		log.log(callerFQCN, Level.DEBUG, message, t);
 	}
 	
+	public void info(String message) {
+		log.log(callerFQCN, Level.INFO, message, null);
+	}
+	
+	public void info(String message, Throwable t) {
+		log.log(callerFQCN, Level.INFO, message, t);
+	}
+	
 	public void warn(String message) {
 		log.log(callerFQCN, Level.WARN, message, null);
 	}