Skip to content

Commit 4b3de00

Browse files
authored
Merge pull request #16 from ChristophEichhorn/master
Change Version to 2.1.1
2 parents 9450029 + 370e63e commit 4b3de00

File tree

10 files changed

+13
-110
lines changed

10 files changed

+13
-110
lines changed

DynamicLogLevels.md

Lines changed: 0 additions & 84 deletions
This file was deleted.

LoggingStacktraces.md

Lines changed: 0 additions & 12 deletions
This file was deleted.

README.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ All in all, you should do the following:
2727
* adjust your logging configuration accordingly.
2828

2929

30-
Say, you want to make use of the *servlet filter* feature, then you need to add the following dependency to your POM with property `cf-logging-version` referring to the latest nexus version (currently `2.0.10`):
30+
Say, you want to make use of the *servlet filter* feature, then you need to add the following dependency to your POM with property `cf-logging-version` referring to the latest nexus version (currently `2.1.1`):
3131

3232
```xml
3333
<properties>
34-
<cf-logging-version>2.0.10</cf-logging-version>
34+
<cf-logging-version>2.1.1</cf-logging-version>
3535
</properties>
3636
```
3737

@@ -48,8 +48,6 @@ Say, you want to make use of the *servlet filter* feature, then you need to add
4848

4949
This feature only depends on the servlet API which you have included in your POM anyhow.
5050

51-
For the new dynamic log level feature and the stacktrace feature version 2.1.0 has to be chosen which is not yet available on the nexus repository but can be obtained by building the parent project of this repository.
52-
5351
## Implementation variants and logging configurations
5452

5553
The *core* feature (on which all other features rely) is just using the `org.slf4j` API, but to actually get logs written, you need to pick an implementation feature. As stated above, we have two implementations
@@ -151,11 +149,12 @@ Here are sort of the minimal configurations you'd need:
151149
This library provides the possibility to change the log-level threshold for a
152150
single thread by adding a token in the header of a request. A detailed
153151
description about how to apply this feature can be found
154-
[here](./DynamicLogLevels.md).
152+
[here](https://github.com/SAP/cf-java-logging-support/wiki/Dynamic-Log-Levels).
155153

156154
## Logging Stacktraces
157155

158-
Stacktraces can be logged within one log message. Further details can be found [here](./LoggingStacktraces.md).
156+
Stacktraces can be logged within one log message. Further details can be found
157+
[here](https://github.com/SAP/cf-java-logging-support/wiki/Logging-Stack-Traces).
159158

160159
## Sample Application
161160

cf-java-logging-support-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<parent>
3333
<groupId>com.sap.hcp.cf.logging</groupId>
3434
<artifactId>cf-java-logging-support-parent</artifactId>
35-
<version>2.1.0</version>
35+
<version>2.1.1</version>
3636
<relativePath>../pom.xml</relativePath>
3737
</parent>
3838
<build>

cf-java-logging-support-jersey/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<relativePath>../pom.xml</relativePath>
1010
<groupId>com.sap.hcp.cf.logging</groupId>
1111
<artifactId>cf-java-logging-support-parent</artifactId>
12-
<version>2.1.0</version>
12+
<version>2.1.1</version>
1313
</parent>
1414

1515
<name>cf-java-logging-support-jersey</name>

cf-java-logging-support-log4j2/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<relativePath>../pom.xml</relativePath>
1212
<groupId>com.sap.hcp.cf.logging</groupId>
1313
<artifactId>cf-java-logging-support-parent</artifactId>
14-
<version>2.1.0</version>
14+
<version>2.1.1</version>
1515
</parent>
1616

1717
<dependencies>

cf-java-logging-support-logback/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<relativePath>../pom.xml</relativePath>
1111
<groupId>com.sap.hcp.cf.logging</groupId>
1212
<artifactId>cf-java-logging-support-parent</artifactId>
13-
<version>2.1.0</version>
13+
<version>2.1.1</version>
1414
</parent>
1515

1616
<dependencies>

cf-java-logging-support-servlet/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<parent>
1010
<groupId>com.sap.hcp.cf.logging</groupId>
1111
<artifactId>cf-java-logging-support-parent</artifactId>
12-
<version>2.1.0</version>
12+
<version>2.1.1</version>
1313
<relativePath>../pom.xml</relativePath>
1414
</parent>
1515

pom.xml

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

55
<groupId>com.sap.hcp.cf.logging</groupId>
66
<artifactId>cf-java-logging-support-parent</artifactId>
7-
<version>2.1.0</version>
7+
<version>2.1.1</version>
88
<packaging>pom</packaging>
99

1010
<name>Cloud Foundry Java logging support components</name>

sample/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.sap.hcp.cf.logging</groupId>
88
<artifactId>cf-java-logging-support-parent</artifactId>
9-
<version>2.0.10</version>
9+
<version>2.1.1</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212

@@ -18,7 +18,7 @@
1818
<slf4j.version>1.7.12</slf4j.version>
1919
<jersey.version>2.22.2</jersey.version>
2020
<javax.ws.version>2.0.1</javax.ws.version>
21-
<cf-logging.version>2.0.10</cf-logging.version>
21+
<cf-logging.version>2.1.1</cf-logging.version>
2222
</properties>
2323
<dependencies>
2424
<dependency>

0 commit comments

Comments
 (0)