Skip to content

Commit

Permalink
added atLevel method to Logger
Browse files Browse the repository at this point in the history
Signed-off-by: Ceki Gulcu <ceki@qos.ch>
  • Loading branch information
ceki committed Dec 16, 2021
1 parent c61f017 commit 7c62cf8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions slf4j-api/src/main/java/org/slf4j/Logger.java
Expand Up @@ -114,11 +114,11 @@ default public LoggingEventBuilder makeLoggingEventBuilder(Level level) {
}

/**
* An alias for {@link #makeLoggingEventBuilder}.
* A convenient alias for {@link #makeLoggingEventBuilder}.
*
* @since 2.0
*/
default public LoggingEventBuilder at(Level level) {
default public LoggingEventBuilder atLevel(Level level) {
return makeLoggingEventBuilder(level);
}

Expand Down

0 comments on commit 7c62cf8

Please sign in to comment.