@@ -39,6 +39,7 @@ public interface LoggerBridge {
39
39
40
40
/*
41
41
The following borrowed from SLF4J Logger.java
42
+ Which is MIT licensed and thus compatible with this project's license.
42
43
*/
43
44
44
45
/**
@@ -84,7 +85,7 @@ public interface LoggerBridge {
84
85
/**
85
86
* Log a message at the DEBUG level according to the specified format
86
87
* and argument.
87
- * <p/>
88
+ *
88
89
* <p>This form avoids superfluous object creation when the logger
89
90
* is disabled for the DEBUG level. </p>
90
91
*
@@ -96,7 +97,7 @@ public interface LoggerBridge {
96
97
/**
97
98
* Log a message at the DEBUG level according to the specified format
98
99
* and arguments.
99
- * <p/>
100
+ *
100
101
* <p>This form avoids superfluous object creation when the logger
101
102
* is disabled for the DEBUG level. </p>
102
103
*
@@ -109,7 +110,7 @@ public interface LoggerBridge {
109
110
/**
110
111
* Log a message at the DEBUG level according to the specified format
111
112
* and arguments.
112
- * <p/>
113
+ *
113
114
* <p>This form avoids superfluous string concatenation when the logger
114
115
* is disabled for the DEBUG level. However, this variant incurs the hidden
115
116
* (and relatively small) cost of creating an <code>Object[]</code> before invoking the method,
@@ -149,7 +150,7 @@ public interface LoggerBridge {
149
150
/**
150
151
* Log a message at the INFO level according to the specified format
151
152
* and argument.
152
- * <p/>
153
+ *
153
154
* <p>This form avoids superfluous object creation when the logger
154
155
* is disabled for the INFO level. </p>
155
156
*
@@ -161,7 +162,7 @@ public interface LoggerBridge {
161
162
/**
162
163
* Log a message at the INFO level according to the specified format
163
164
* and arguments.
164
- * <p/>
165
+ *
165
166
* <p>This form avoids superfluous object creation when the logger
166
167
* is disabled for the INFO level. </p>
167
168
*
@@ -174,7 +175,7 @@ public interface LoggerBridge {
174
175
/**
175
176
* Log a message at the INFO level according to the specified format
176
177
* and arguments.
177
- * <p/>
178
+ *
178
179
* <p>This form avoids superfluous string concatenation when the logger
179
180
* is disabled for the INFO level. However, this variant incurs the hidden
180
181
* (and relatively small) cost of creating an <code>Object[]</code> before invoking the method,
@@ -214,7 +215,7 @@ public interface LoggerBridge {
214
215
/**
215
216
* Log a message at the WARN level according to the specified format
216
217
* and argument.
217
- * <p/>
218
+ *
218
219
* <p>This form avoids superfluous object creation when the logger
219
220
* is disabled for the WARN level. </p>
220
221
*
@@ -226,7 +227,7 @@ public interface LoggerBridge {
226
227
/**
227
228
* Log a message at the WARN level according to the specified format
228
229
* and arguments.
229
- * <p/>
230
+ *
230
231
* <p>This form avoids superfluous object creation when the logger
231
232
* is disabled for the WARN level. </p>
232
233
*
@@ -239,7 +240,7 @@ public interface LoggerBridge {
239
240
/**
240
241
* Log a message at the WARN level according to the specified format
241
242
* and arguments.
242
- * <p/>
243
+ *
243
244
* <p>This form avoids superfluous string concatenation when the logger
244
245
* is disabled for the WARN level. However, this variant incurs the hidden
245
246
* (and relatively small) cost of creating an <code>Object[]</code> before invoking the method,
@@ -279,7 +280,7 @@ public interface LoggerBridge {
279
280
/**
280
281
* Log a message at the ERROR level according to the specified format
281
282
* and argument.
282
- * <p/>
283
+ *
283
284
* <p>This form avoids superfluous object creation when the logger
284
285
* is disabled for the ERROR level. </p>
285
286
*
@@ -291,7 +292,7 @@ public interface LoggerBridge {
291
292
/**
292
293
* Log a message at the ERROR level according to the specified format
293
294
* and arguments.
294
- * <p/>
295
+ *
295
296
* <p>This form avoids superfluous object creation when the logger
296
297
* is disabled for the ERROR level. </p>
297
298
*
@@ -304,7 +305,7 @@ public interface LoggerBridge {
304
305
/**
305
306
* Log a message at the ERROR level according to the specified format
306
307
* and arguments.
307
- * <p/>
308
+ *
308
309
* <p>This form avoids superfluous string concatenation when the logger
309
310
* is disabled for the ERROR level. However, this variant incurs the hidden
310
311
* (and relatively small) cost of creating an <code>Object[]</code> before invoking the method,
@@ -325,4 +326,4 @@ public interface LoggerBridge {
325
326
* @param t the exception (throwable) to log
326
327
*/
327
328
void error (String msg , Throwable t );
328
- }
329
+ }
0 commit comments