You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/modules/ROOT/pages/processor/configuration.adoc
+37Lines changed: 37 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,9 @@ options:
29
29
base-path:
30
30
server-url: 0
31
31
properties-name: api.properties
32
+
logging:
33
+
mapping: true
34
+
mapping-target: stdout
32
35
compatibility:
33
36
bean-validation-valid-on-reactive: false
34
37
identifier-word-break-from-digit-to-letter: false
@@ -378,6 +381,40 @@ options:
378
381
layout: standard
379
382
----
380
383
384
+
== logging:
385
+
386
+
This section contains keys to log the mapping lookup. It may be useful to locate mappings that should be used, but are not.
387
+
388
+
=== mapping:
389
+
390
+
**optional** (boolean, `true` or `false`, default is `false`)
391
+
392
+
enables logging of the mapping lookup.
393
+
394
+
=== mapping-target:
395
+
396
+
**optional** (string, `logger` or `stdout`, default is `logger`)
397
+
398
+
with this option it is possible to control the logging target.
399
+
400
+
If set to `logger` the mapping lookup gets logged at `info` level to link:https://www.slf4j.org/[slf4j]. If set to `stdout` the mapping lookup gets written directly to `stdout` without slf4j.
401
+
402
+
==== maven
403
+
404
+
apart from enabling logging of the mapping lookups in the `mapping.yaml` it is necessary to enable the mapping logger with `io.openapiprocessor.core.converter.mapping` to see any output.
0 commit comments