Skip to content

Commit

Permalink
Optimize test logs, decrease verbose logs (#354)
Browse files Browse the repository at this point in the history
  • Loading branch information
ismailsimsek committed Jun 15, 2024
1 parent add9738 commit a299f51
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ jobs:
distribution: 'temurin'
java-version: 17
- name: Build with Maven
run: mvn -B package --file pom.xml -Dsurefire.skipAfterFailureCount=1
run: mvn -B --no-transfer-progress package --file pom.xml -Dsurefire.skipAfterFailureCount=1
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
echo "RELEASE_NAME=${{ github.ref_name }}" >> $GITHUB_ENV
- name: Build project
run: mvn -B package -Passembly --file pom.xml -Drevision=${{ env.RELEASE_NAME }}
run: mvn -B --no-transfer-progress package -Passembly --file pom.xml -Drevision=${{ env.RELEASE_NAME }}

- name: Delete previous ${{ env.RELEASE_NAME }} release
uses: dev-drprasad/[email protected]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public TestConfigSource() {
config.put("debezium.source.table.whitelist", "inventory.*");
config.put("%postgresql.debezium.source.replica.identity.autoset.values", "inventory.*:FULL");

config.put("quarkus.log.level", "INFO");
config.put("quarkus.log.level", "WARN");
config.put("quarkus.log.category.\"org.apache.spark\".level", "WARN");
config.put("quarkus.log.category.\"org.apache.hadoop\".level", "ERROR");
config.put("quarkus.log.category.\"org.apache.parquet\".level", "WARN");
Expand Down

0 comments on commit a299f51

Please sign in to comment.