File tree Expand file tree Collapse file tree 2 files changed +12
-7
lines changed
docs/modules/ROOT/pages/reference/extensions
extensions/core/runtime/src/main/java/io/quarkiverse/cxf Expand file tree Collapse file tree 2 files changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -594,8 +594,9 @@ respectively.
594
594
.<| `int`
595
595
.<| `49152`
596
596
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
599
600
`xref:#quarkus-cxf_quarkus-cxf-endpoint-endpoint-path-logging-limit[quarkus.cxf.endpoint."/endpoint-path".logging.limit]`
600
601
or
601
602
`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]`
1262
1263
.<|
1263
1264
1264
1265
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.
1266
1268
1267
1269
*Environment variable*: `+++QUARKUS_CXF_ENDPOINT___ENDPOINT_PATH__LOGGING_LIMIT+++` +
1268
1270
*Since Quarkus CXF*: 2.6.0
@@ -1559,7 +1561,8 @@ by `xref:#quarkus-cxf_quarkus-cxf-logging-pretty[quarkus.cxf.logging.pretty]`
1559
1561
.<|
1560
1562
1561
1563
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.
1563
1566
1564
1567
*Environment variable*: `+++QUARKUS_CXF_CLIENT__CLIENT_NAME__LOGGING_LIMIT+++` +
1565
1568
*Since Quarkus CXF*: 2.6.0
Original file line number Diff line number Diff line change @@ -41,7 +41,8 @@ public interface PerClientOrServiceLoggingConfig {
41
41
42
42
/**
43
43
* 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.
45
46
*
46
47
* @since 2.6.0
47
48
* @asciidoclet
@@ -167,8 +168,9 @@ public interface GlobalLoggingConfig {
167
168
boolean pretty ();
168
169
169
170
/**
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
172
174
* `xref:#quarkus-cxf_quarkus-cxf-endpoint-endpoint-path-logging-limit[quarkus.cxf.endpoint."/endpoint-path".logging.limit]`
173
175
* or
174
176
* `xref:#quarkus-cxf_quarkus-cxf-client-client-name-logging-limit[quarkus.cxf.client."client-name".logging.limit]`
You can’t perform that action at this time.
0 commit comments