Skip to content

Commit 3a5c6dd

Browse files
authored
cleanup documentation (#281)
1 parent a1efbb7 commit 3a5c6dd

6 files changed

Lines changed: 3 additions & 282 deletions

documentation/_Sidebar.asciidoc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@
4949
=== Coding
5050
* link:coding-conventions.asciidoc[Coding Conventions]
5151
* link:coding-tools.asciidoc[Development Tools]
52+
* https://github.com/devonfw/.github/blob/master/CONTRIBUTING.asciidoc#contributing[Contributing to devonfw]
5253

5354
=== Tutorials
5455
* link:tutorial-newapp.asciidoc[Start a new application]

documentation/devonfw-code-contribution.asciidoc

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

documentation/devonfw-documentation.asciidoc

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

documentation/devonfw-issue-work.asciidoc

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

documentation/devonfw-release.asciidoc

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

documentation/guide-logging.asciidoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Example:
103103
[D: 2013-09-05 16:40:36,464] [P: DEBUG] [C: 12345] [T: main] [L: my.package.MyClass]-[M: My message...]
104104

105105
== Security
106-
In order to prevent https://www.owasp.org/index.php/Log_Forging[log forging] attacks we provide a special appender for logback in link:guide-logging.asciidoc[devonfw-logging]. If you use it (see xref:configuration[]) you are safe from such attacks.
106+
In order to prevent https://www.owasp.org/index.php/Log_Forging[log forging] attacks we provide a special appender for logback in devon4j-logging. If you use it (see xref:configuration[]) you are safe from such attacks.
107107

108108
== Correlation ID
109109
In order to correlate separate HTTP requests to services belonging to the same user / session, we provide a servlet filter called `DiagnosticContextFilter`. This filter takes a provided correlation ID from the HTTP header `X-Correlation-Id`. If none was found, it will generate a new correlation id as `UUID`. This correlation ID is added as MDC to the logger. Therefore, it will then be included to any log message of the current request (thread). Further concepts such as link:guide-service-client.asciidoc[service invocations] will pass this correlation ID to subsequent calls in the application landscape. Hence you can find all log messages related to an initial request simply via the correlation ID even in highly distributed systems.
@@ -141,4 +141,4 @@ This will produce something like:
141141
"level":"INFO",
142142
"level_value":20000,
143143
"appname":"basic",}
144-
----
144+
----

0 commit comments

Comments
 (0)