@@ -39,6 +39,7 @@ public interface LoggerBridge {
3939
4040/*
4141 The following borrowed from SLF4J Logger.java
42+ Which is MIT licensed and thus compatible with this project's license.
4243*/
4344
4445/**
@@ -84,7 +85,7 @@ public interface LoggerBridge {
8485 /**
8586 * Log a message at the DEBUG level according to the specified format
8687 * and argument.
87- * <p/>
88+ *
8889 * <p>This form avoids superfluous object creation when the logger
8990 * is disabled for the DEBUG level. </p>
9091 *
@@ -96,7 +97,7 @@ public interface LoggerBridge {
9697 /**
9798 * Log a message at the DEBUG level according to the specified format
9899 * and arguments.
99- * <p/>
100+ *
100101 * <p>This form avoids superfluous object creation when the logger
101102 * is disabled for the DEBUG level. </p>
102103 *
@@ -109,7 +110,7 @@ public interface LoggerBridge {
109110 /**
110111 * Log a message at the DEBUG level according to the specified format
111112 * and arguments.
112- * <p/>
113+ *
113114 * <p>This form avoids superfluous string concatenation when the logger
114115 * is disabled for the DEBUG level. However, this variant incurs the hidden
115116 * (and relatively small) cost of creating an <code>Object[]</code> before invoking the method,
@@ -149,7 +150,7 @@ public interface LoggerBridge {
149150 /**
150151 * Log a message at the INFO level according to the specified format
151152 * and argument.
152- * <p/>
153+ *
153154 * <p>This form avoids superfluous object creation when the logger
154155 * is disabled for the INFO level. </p>
155156 *
@@ -161,7 +162,7 @@ public interface LoggerBridge {
161162 /**
162163 * Log a message at the INFO level according to the specified format
163164 * and arguments.
164- * <p/>
165+ *
165166 * <p>This form avoids superfluous object creation when the logger
166167 * is disabled for the INFO level. </p>
167168 *
@@ -174,7 +175,7 @@ public interface LoggerBridge {
174175 /**
175176 * Log a message at the INFO level according to the specified format
176177 * and arguments.
177- * <p/>
178+ *
178179 * <p>This form avoids superfluous string concatenation when the logger
179180 * is disabled for the INFO level. However, this variant incurs the hidden
180181 * (and relatively small) cost of creating an <code>Object[]</code> before invoking the method,
@@ -214,7 +215,7 @@ public interface LoggerBridge {
214215 /**
215216 * Log a message at the WARN level according to the specified format
216217 * and argument.
217- * <p/>
218+ *
218219 * <p>This form avoids superfluous object creation when the logger
219220 * is disabled for the WARN level. </p>
220221 *
@@ -226,7 +227,7 @@ public interface LoggerBridge {
226227 /**
227228 * Log a message at the WARN level according to the specified format
228229 * and arguments.
229- * <p/>
230+ *
230231 * <p>This form avoids superfluous object creation when the logger
231232 * is disabled for the WARN level. </p>
232233 *
@@ -239,7 +240,7 @@ public interface LoggerBridge {
239240 /**
240241 * Log a message at the WARN level according to the specified format
241242 * and arguments.
242- * <p/>
243+ *
243244 * <p>This form avoids superfluous string concatenation when the logger
244245 * is disabled for the WARN level. However, this variant incurs the hidden
245246 * (and relatively small) cost of creating an <code>Object[]</code> before invoking the method,
@@ -279,7 +280,7 @@ public interface LoggerBridge {
279280 /**
280281 * Log a message at the ERROR level according to the specified format
281282 * and argument.
282- * <p/>
283+ *
283284 * <p>This form avoids superfluous object creation when the logger
284285 * is disabled for the ERROR level. </p>
285286 *
@@ -291,7 +292,7 @@ public interface LoggerBridge {
291292 /**
292293 * Log a message at the ERROR level according to the specified format
293294 * and arguments.
294- * <p/>
295+ *
295296 * <p>This form avoids superfluous object creation when the logger
296297 * is disabled for the ERROR level. </p>
297298 *
@@ -304,7 +305,7 @@ public interface LoggerBridge {
304305 /**
305306 * Log a message at the ERROR level according to the specified format
306307 * and arguments.
307- * <p/>
308+ *
308309 * <p>This form avoids superfluous string concatenation when the logger
309310 * is disabled for the ERROR level. However, this variant incurs the hidden
310311 * (and relatively small) cost of creating an <code>Object[]</code> before invoking the method,
@@ -325,4 +326,4 @@ public interface LoggerBridge {
325326 * @param t the exception (throwable) to log
326327 */
327328 void error (String msg , Throwable t );
328- }
329+ }
0 commit comments