Skip to content

Commit eb1710a

Browse files
committed
start work on 2.0.3-SNAPSHOT, fix SLF4J-564
1 parent bb49a5a commit eb1710a

File tree

17 files changed

+31
-30
lines changed

17 files changed

+31
-30
lines changed

integration/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.slf4j</groupId>
99
<artifactId>slf4j-parent</artifactId>
10-
<version>2.0.2</version>
10+
<version>2.0.3-SNAPSHOT</version>
1111
</parent>
1212

1313
<artifactId>integration</artifactId>

jcl-over-slf4j/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.slf4j</groupId>
77
<artifactId>slf4j-parent</artifactId>
8-
<version>2.0.2</version>
8+
<version>2.0.3-SNAPSHOT</version>
99
</parent>
1010

1111
<modelVersion>4.0.0</modelVersion>

jul-to-slf4j/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.slf4j</groupId>
99
<artifactId>slf4j-parent</artifactId>
10-
<version>2.0.2</version>
10+
<version>2.0.3-SNAPSHOT</version>
1111
</parent>
1212

1313
<artifactId>jul-to-slf4j</artifactId>

log4j-over-slf4j/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.slf4j</groupId>
99
<artifactId>slf4j-parent</artifactId>
10-
<version>2.0.2</version>
10+
<version>2.0.3-SNAPSHOT</version>
1111
</parent>
1212

1313

osgi-over-slf4j/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.slf4j</groupId>
99
<artifactId>slf4j-parent</artifactId>
10-
<version>2.0.2</version>
10+
<version>2.0.3-SNAPSHOT</version>
1111
</parent>
1212

1313
<artifactId>osgi-over-slf4j</artifactId>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>org.slf4j</groupId>
88
<artifactId>slf4j-parent</artifactId>
9-
<version>2.0.2</version>
9+
<version>2.0.3-SNAPSHOT</version>
1010

1111
<packaging>pom</packaging>
1212
<name>SLF4J</name>

slf4j-api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.slf4j</groupId>
99
<artifactId>slf4j-parent</artifactId>
10-
<version>2.0.2</version>
10+
<version>2.0.3-SNAPSHOT</version>
1111
</parent>
1212

1313
<artifactId>slf4j-api</artifactId>

slf4j-api/src/main/java/org/slf4j/helpers/AbstractLogger.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -407,17 +407,17 @@ private void handleArgArrayCall(Level level, Marker marker, String msg, Object[]
407407
abstract protected String getFullyQualifiedCallerName();
408408

409409
/**
410-
* Given various arguments passed as parameters perform actual logging.
410+
* Given various arguments passed as parameters, perform actual logging.
411411
*
412412
* <p>This method assumes that the separation of the args array into actual
413413
* objects and a throwable has been already operated.
414414
*
415-
* @param level
416-
* @param marker
417-
* @param msg
418-
* @param arguments
419-
* @param throwable
415+
* @param level the SLF4J level for this event
416+
* @param marker The marker to be used for this event, may be null.
417+
* @param messagePattern The message pattern which will be parsed and formatted
418+
* @param arguments the array of arguments to be formatted, may be null
419+
* @param throwable The exception whose stack trace should be logged, may be null
420420
*/
421-
abstract protected void handleNormalizedLoggingCall(Level level, Marker marker, String msg, Object[] arguments, Throwable throwable);
421+
abstract protected void handleNormalizedLoggingCall(Level level, Marker marker, String messagePattern, Object[] arguments, Throwable throwable);
422422

423423
}

slf4j-ext/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.slf4j</groupId>
99
<artifactId>slf4j-parent</artifactId>
10-
<version>2.0.2</version>
10+
<version>2.0.3-SNAPSHOT</version>
1111
</parent>
1212

1313
<artifactId>slf4j-ext</artifactId>

slf4j-jdk-platform-logging/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<artifactId>slf4j-parent</artifactId>
1010
<groupId>org.slf4j</groupId>
11-
<version>2.0.2</version>
11+
<version>2.0.3-SNAPSHOT</version>
1212
</parent>
1313

1414
<artifactId>slf4j-jdk-platform-logging</artifactId>

0 commit comments

Comments
 (0)