|
|
@@ -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);
|
|
|
}
|