Skip to content

Commit 66b6e96

Browse files
rfalkeadriancole
authored andcommitted
Fix javadoc of ErrorLogger. Minor improvement of other javadoc. (OpenFeign#467)
1 parent 8c101e1 commit 66b6e96

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

core/src/main/java/feign/Logger.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ public enum Level {
142142
}
143143

144144
/**
145-
* logs to the category {@link Logger} at {@link java.util.logging.Level#FINE}.
145+
* Logs to System.err.
146146
*/
147147
public static class ErrorLogger extends Logger {
148148
@Override
@@ -152,7 +152,7 @@ protected void log(String configKey, String format, Object... args) {
152152
}
153153

154154
/**
155-
* logs to the category {@link Logger} at {@link java.util.logging.Level#FINE}, if loggable.
155+
* Logs to the category {@link Logger} at {@link java.util.logging.Level#FINE}, if loggable.
156156
*/
157157
public static class JavaLogger extends Logger {
158158

@@ -184,7 +184,7 @@ protected void log(String configKey, String format, Object... args) {
184184
}
185185

186186
/**
187-
* helper that configures jul to sanely log messages at FINE level without additional
187+
* Helper that configures java.util.logging to sanely log messages at FINE level without additional
188188
* formatting.
189189
*/
190190
public JavaLogger appendToFile(String logfile) {

0 commit comments

Comments
 (0)