Skip to content

Commit f9ab0a6

Browse files
authored
Log trace (#36812)
1 parent fad0737 commit f9ab0a6

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

airbyte-integrations/connectors/destination-e2e-test/metadata.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ data:
22
connectorSubtype: unknown
33
connectorType: destination
44
definitionId: 2eb65e87-983a-4fd7-b3e3-9d9dc6eb8537
5-
dockerImageTag: 0.3.1
5+
dockerImageTag: 0.3.2
66
dockerRepository: airbyte/destination-e2e-test
77
githubIssueLabel: destination-e2e-test
88
icon: airbyte.svg

airbyte-integrations/connectors/destination-e2e-test/src/main/java/io/airbyte/integrations/destination/e2e_test/logging/LoggingConsumer.java

+2
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,8 @@ public void accept(final AirbyteMessage message) {
5353
LOGGER.info("Emitting state: {}", message);
5454
outputRecordCollector.accept(message);
5555
return;
56+
} else if (message.getType() != Type.TRACE) {
57+
LOGGER.info("Received a trace: {}", message);
5658
} else if (message.getType() != Type.RECORD) {
5759
return;
5860
}

docs/integrations/destinations/e2e-test.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ The OSS and Cloud variants have the same version number starting from version `0
4646

4747
| Version | Date | Pull Request | Subject |
4848
|:--------|:-----------| :------------------------------------------------------- |:----------------------------------------------------------|
49-
| 0.3.1 | 2024-02-14 | [35278](https://github.com/airbytehq/airbyte/pull/35278) | Adopt CDK 0.20.6 |
49+
| 0.3.2 | 2024-02-14 | [36812](https://github.com/airbytehq/airbyte/pull/36812) | Log trace messages |
50+
| 0.3.1 | 2024-02-14 | [35278](https://github.com/airbytehq/airbyte/pull/35278) | Adopt CDK 0.20.6 |
5051
| 0.3.0 | 2023-05-08 | [25776](https://github.com/airbytehq/airbyte/pull/25776) | Standardize spec and change property field to non-keyword |
5152
| 0.2.4 | 2022-06-17 | [13864](https://github.com/airbytehq/airbyte/pull/13864) | Updated stacktrace format for any trace message errors |
5253
| 0.2.3 | 2022-02-14 | [10256](https://github.com/airbytehq/airbyte/pull/10256) | Add `-XX:+ExitOnOutOfMemoryError` JVM option |

0 commit comments

Comments
 (0)