Skip to content

Commit 3867c1b

Browse files
committed
minor: remove trailing whitespace
1 parent 9d3e96b commit 3867c1b

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ The instrumentation part is currently focusing on providing [request filters for
1414

1515
## Features and dependencies
1616

17-
As you can see from the structure of this repository, we're not providing one *uber* JAR that contains everything, but provide each feature separately. We also try to stay away from wiring up too many dependencies by tagging almost all of them as *provided.* As a consequence, it's your task to get all runtime dependencies resolved in your application POM file.
17+
As you can see from the structure of this repository, we're not providing one *uber* JAR that contains everything, but provide each feature separately. We also try to stay away from wiring up too many dependencies by tagging almost all of them as *provided.* As a consequence, it's your task to get all runtime dependencies resolved in your application POM file.
1818

1919
All in all, you should do the following:
2020

21-
* make up your mind which features you actually need,
22-
* adjust your Maven dependencies accordingly,
21+
* make up your mind which features you actually need,
22+
* adjust your Maven dependencies accordingly,
2323
* pick your favorite logging implementation, and
2424
* adjust your logging configuration accordingly.
2525

@@ -39,7 +39,7 @@ This feature only depends on the servlet API which you have included in your POM
3939

4040
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
4141

42-
* `cf-java-logging-support-logback` based on [logback](http://logback.qos.ch/), and
42+
* `cf-java-logging-support-logback` based on [logback](http://logback.qos.ch/), and
4343
* `cf-java-logging-support-log4j2` based on [log4j2](http://logging.apache.org/log4j/2.x/).
4444

4545
Again, we don't include dependencies to those implementation backends ourselves, so you need to provide the corresponding dependencies in your POM file:
@@ -91,7 +91,7 @@ Here are sort of the minimal configurations you'd need:
9191
<appender name="STDOUT-JSON" class="ch.qos.logback.core.ConsoleAppender">
9292
<encoder class="com.sap.hcp.cf.logback.encoder.JsonEncoder"/>
9393
</appender>
94-
<!-- for local development, you may want to switch to a more human-readable layout -->
94+
<!-- for local development, you may want to switch to a more human-readable layout -->
9595
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
9696
<encoder>
9797
<pattern>%date %-5level [%thread] - [%logger] [%mdc] - %msg%n</pattern>
@@ -102,14 +102,14 @@ Here are sort of the minimal configurations you'd need:
102102
<appender-ref ref="STDOUT-JSON" />
103103
</root>
104104
<!-- request metrics are reported using INFO level, so make sure the instrumentation loggers are set to that level -->
105-
<logger name="com.sap.hcp.cf" level="INFO" />
105+
<logger name="com.sap.hcp.cf" level="INFO" />
106106
</configuration>
107107
```
108108

109109
*log4j2.xml:*
110110

111111
``` xml
112-
<Configuration
112+
<Configuration
113113
status="warn" strict="true"
114114
packages="com.sap.hcp.cf.log4j2.converter,com.sap.hcp.cf.log4j2.layout">
115115
<Appenders>
@@ -128,7 +128,7 @@ Here are sort of the minimal configurations you'd need:
128128
<!-- request metrics are reported using INFO level, so make sure the instrumentation loggers are set to that level -->
129129
<Logger name="com.sap.hcp.cf" level="INFO"/>
130130
</Loggers>
131-
</Configuration>
131+
</Configuration>
132132
```
133133

134134
## Sample Application

0 commit comments

Comments
 (0)