Skip to content

Commit f5ebd3f

Browse files
committed
Document that quarkus.cxf.logging.limit = -1 means no limit
1 parent ca564ce commit f5ebd3f

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed

docs/modules/ROOT/pages/reference/extensions/quarkus-cxf.adoc

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -594,8 +594,9 @@ respectively.
594594
.<| `int`
595595
.<| `49152`
596596

597-
3+a|A message length in bytes at which it is truncated in the log. This setting can be overridden per client or service
598-
endpoint using
597+
3+a|A message length in bytes at which it is truncated in the log.
598+
'-1' means no limit.
599+
This setting can be overridden per client or service endpoint using
599600
`xref:#quarkus-cxf_quarkus-cxf-endpoint-endpoint-path-logging-limit[quarkus.cxf.endpoint."/endpoint-path".logging.limit]`
600601
or
601602
`xref:#quarkus-cxf_quarkus-cxf-client-client-name-logging-limit[quarkus.cxf.client."client-name".logging.limit]`
@@ -1262,7 +1263,8 @@ by `xref:#quarkus-cxf_quarkus-cxf-logging-pretty[quarkus.cxf.logging.pretty]`
12621263
.<|
12631264

12641265
3+a|A message length in bytes at which it is truncated in the log. The default is given by
1265-
`xref:#quarkus-cxf_quarkus-cxf-logging-limit[quarkus.cxf.logging.limit]`
1266+
`xref:#quarkus-cxf_quarkus-cxf-logging-limit[quarkus.cxf.logging.limit]`.
1267+
'-1' means no limit.
12661268

12671269
*Environment variable*: `+++QUARKUS_CXF_ENDPOINT___ENDPOINT_PATH__LOGGING_LIMIT+++` +
12681270
*Since Quarkus CXF*: 2.6.0
@@ -1559,7 +1561,8 @@ by `xref:#quarkus-cxf_quarkus-cxf-logging-pretty[quarkus.cxf.logging.pretty]`
15591561
.<|
15601562

15611563
3+a|A message length in bytes at which it is truncated in the log. The default is given by
1562-
`xref:#quarkus-cxf_quarkus-cxf-logging-limit[quarkus.cxf.logging.limit]`
1564+
`xref:#quarkus-cxf_quarkus-cxf-logging-limit[quarkus.cxf.logging.limit]`.
1565+
'-1' means no limit.
15631566

15641567
*Environment variable*: `+++QUARKUS_CXF_CLIENT__CLIENT_NAME__LOGGING_LIMIT+++` +
15651568
*Since Quarkus CXF*: 2.6.0

extensions/core/runtime/src/main/java/io/quarkiverse/cxf/LoggingConfig.java

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ public interface PerClientOrServiceLoggingConfig {
4141

4242
/**
4343
* A message length in bytes at which it is truncated in the log. The default is given by
44-
* `xref:#quarkus-cxf_quarkus-cxf-logging-limit[quarkus.cxf.logging.limit]`
44+
* `xref:#quarkus-cxf_quarkus-cxf-logging-limit[quarkus.cxf.logging.limit]`.
45+
* '-1' means no limit.
4546
*
4647
* @since 2.6.0
4748
* @asciidoclet
@@ -167,8 +168,9 @@ public interface GlobalLoggingConfig {
167168
boolean pretty();
168169

169170
/**
170-
* A message length in bytes at which it is truncated in the log. This setting can be overridden per client or service
171-
* endpoint using
171+
* A message length in bytes at which it is truncated in the log.
172+
* '-1' means no limit.
173+
* This setting can be overridden per client or service endpoint using
172174
* `xref:#quarkus-cxf_quarkus-cxf-endpoint-endpoint-path-logging-limit[quarkus.cxf.endpoint."/endpoint-path".logging.limit]`
173175
* or
174176
* `xref:#quarkus-cxf_quarkus-cxf-client-client-name-logging-limit[quarkus.cxf.client."client-name".logging.limit]`

0 commit comments

Comments
 (0)