-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #100 from exasol/fix-udf-logging
- Loading branch information
Showing
15 changed files
with
256 additions
and
203 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
{ | ||
"editor.formatOnSave": true, | ||
"editor.codeActionsOnSave": { | ||
"source.organizeImports": "explicit", | ||
"source.generate.finalModifiers": "explicit", | ||
"source.fixAll": "explicit" | ||
}, | ||
"java.codeGeneration.useBlocks": true, | ||
"java.saveActions.organizeImports": true, | ||
"java.sources.organizeImports.starThreshold": 3, | ||
"java.sources.organizeImports.staticStarThreshold": 3, | ||
"java.test.config": { | ||
"vmArgs": [ | ||
"-Djava.util.logging.config.file=src/test/resources/logging.properties" | ||
] | ||
}, | ||
"java.configuration.updateBuildConfiguration": "automatic", | ||
"files.watcherExclude": { | ||
"**/target": true | ||
}, | ||
"sonarlint.connectedMode.project": { | ||
"connectionId": "exasol", | ||
"projectKey": "com.exasol:kafka-connector-extension" | ||
} | ||
"editor.formatOnSave": true, | ||
"editor.codeActionsOnSave": { | ||
"source.organizeImports": "explicit", | ||
"source.generate.finalModifiers": "explicit", | ||
"source.fixAll": "explicit" | ||
}, | ||
"java.codeGeneration.useBlocks": true, | ||
"java.saveActions.organizeImports": true, | ||
"java.sources.organizeImports.starThreshold": 3, | ||
"java.sources.organizeImports.staticStarThreshold": 3, | ||
"java.test.config": { | ||
"vmArgs": [ | ||
"-Djava.util.logging.config.file=src/test/resources/logging.properties" | ||
] | ||
}, | ||
"java.configuration.updateBuildConfiguration": "automatic", | ||
"files.watcherExclude": { | ||
"**/target": true | ||
}, | ||
"sonarlint.connectedMode.project": { | ||
"connectionId": "exasol", | ||
"projectKey": "com.exasol:kafka-connector-extension" | ||
} | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Kafka Connector Extension 1.7.7, released 2024-??-?? | ||
|
||
Code name: Fix logging | ||
|
||
## Summary | ||
|
||
This release fixes logging of the UDF by adding required libraries. The log level is `WARN` by default and can be changed by rebuilding the adapter JAR. See the [Exasol documentation](https://docs.exasol.com/db/latest/database_concepts/udf_scripts/debug_udf_script_output.htm) for how to configure logging of UDFs. | ||
|
||
## Features | ||
|
||
* ISSUE_NUMBER: description | ||
|
||
## Dependency Updates | ||
|
||
### Exasol Kafka Connector Extension | ||
|
||
#### Compile Dependency Updates | ||
|
||
* Added `ch.qos.logback:logback-classic:1.5.6` | ||
* Added `org.slf4j:slf4j-api:2.0.16` | ||
|
||
#### Test Dependency Updates | ||
|
||
* Removed `ch.qos.logback:logback-classic:1.5.3` | ||
* Removed `ch.qos.logback:logback-core:1.5.3` | ||
* Updated `com.exasol:exasol-testcontainers:7.0.1` to `7.1.1` | ||
|
||
#### Plugin Dependency Updates | ||
|
||
* Updated `org.itsallcode:openfasttrace-maven-plugin:1.8.0` to `2.0.0` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<!-- Commented out to fix OFT tracing, see https://github.com/itsallcode/openfasttrace/issues/429 --> | ||
<!-- <!DOCTYPE configuration> --> | ||
|
||
<configuration> | ||
<import class="ch.qos.logback.classic.encoder.PatternLayoutEncoder"/> | ||
<import class="ch.qos.logback.core.ConsoleAppender"/> | ||
|
||
<appender name="STDOUT" class="ConsoleAppender"> | ||
<encoder class="PatternLayoutEncoder"> | ||
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} -%kvp- %msg%n</pattern> | ||
</encoder> | ||
</appender> | ||
|
||
<root level="warn"> | ||
<appender-ref ref="STDOUT"/> | ||
</root> | ||
</configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<!-- Commented out to fix OFT tracing, see https://github.com/itsallcode/openfasttrace/issues/429 --> | ||
<!-- <!DOCTYPE configuration> --> | ||
|
||
<configuration> | ||
<import class="ch.qos.logback.classic.encoder.PatternLayoutEncoder"/> | ||
<import class="ch.qos.logback.core.ConsoleAppender"/> | ||
|
||
<appender name="STDOUT" class="ConsoleAppender"> | ||
<encoder class="PatternLayoutEncoder"> | ||
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} -%kvp- %msg%n</pattern> | ||
</encoder> | ||
</appender> | ||
|
||
<root level="info"> | ||
<appender-ref ref="STDOUT"/> | ||
</root> | ||
|
||
<logger name="com.exasol" additivity="false" level="trace" /> | ||
<logger name="org.testcontainers" additivity="false" level="debug" /> | ||
</configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters