]> source.dussan.org Git - jgit.git/commitdiff
Fully implement Logger interface 89/689/2
authorJonathan Gossage <jgossage@gmail.com>
Fri, 16 Jul 2010 23:53:23 +0000 (01:53 +0200)
committerMatthias Sohn <matthias.sohn@sap.com>
Fri, 16 Jul 2010 23:53:23 +0000 (01:53 +0200)
On April 27, 2010 the Logger interface was upgraded with a number of new methods
to make it consistent with the implementations it was meant to support.

This patch makes RecordingLogger consistent with the Logger interface and allows to
also use Jetty 7.1.5 released with Helios which can be installed from the p2 repository
at http://download.eclipse.org/jetty/7.1.5.v20100705/repository

Change-Id: I5645436bbe7492f82d4069e4d9cbebede0bf764e
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
org.eclipse.jgit.http.test/tst/org/eclipse/jgit/http/test/util/RecordingLogger.java

index 24e125c22b0ce3e8be0e8277aa303c5e2c453d74..dafc3c5f6c046f9d874799a7a988c4e6ff747e0a 100644 (file)
@@ -78,6 +78,10 @@ public class RecordingLogger implements Logger {
                public Warning(String msg, Throwable cause) {
                        super(msg, cause);
                }
+
+               public Warning(Throwable thrown) {
+                       super(thrown);
+               }
        }
 
        private final String name;
@@ -116,7 +120,9 @@ public class RecordingLogger implements Logger {
                }
        }
 
-       public void debug(String msg, Object arg0, Object arg1) {
+       public void debug(@SuppressWarnings("unused") String msg,
+                                 @SuppressWarnings("unused") Object arg0,
+                                 @SuppressWarnings("unused") Object arg1) {
                // Ignore (not relevant to test failures)
        }
 
@@ -124,15 +130,17 @@ public class RecordingLogger implements Logger {
                // Ignore (not relevant to test failures)
        }
 
-       public void debug(String msg) {
+       public void debug(@SuppressWarnings("unused") String msg) {
                // Ignore (not relevant to test failures)
        }
 
-       public void info(String msg, Object arg0, Object arg1) {
+       public void info(@SuppressWarnings("unused") String msg,
+                                @SuppressWarnings("unused") Object arg0,
+                                @SuppressWarnings("unused") Object arg1) {
                // Ignore (not relevant to test failures)
        }
 
-       public void info(String msg) {
+       public void info(@SuppressWarnings("unused") String msg) {
                // Ignore (not relevant to test failures)
        }
 
@@ -143,4 +151,36 @@ public class RecordingLogger implements Logger {
        public void setDebugEnabled(boolean enabled) {
                // Ignore (not relevant to test failures)
        }
+
+       public void warn(String msg, Object... args) {
+               synchronized (warnings) {
+                       warnings.add(new Warning(MessageFormat.format(msg, args)));
+               }
+       }
+
+       public void warn(Throwable thrown) {
+               synchronized (warnings) {
+                       warnings.add(new Warning(thrown));
+               }
+       }
+
+       public void info(String msg, Object... args) {
+               // Ignore (not relevant to test failures)
+       }
+
+       public void info(Throwable thrown) {
+               // Ignore (not relevant to test failures)
+       }
+
+       public void info(String msg, Throwable thrown) {
+               // Ignore (not relevant to test failures)
+       }
+
+       public void debug(String msg, Object... args) {
+               // Ignore (not relevant to test failures)
+       }
+
+       public void debug(Throwable thrown) {
+               // Ignore (not relevant to test failures)
+       }
 }