Skip to content

Commit

Permalink
Merge pull request #43018 from geoand/#43017
Browse files Browse the repository at this point in the history
Reduce log clutter in security tests
  • Loading branch information
geoand authored Sep 4, 2024
2 parents 4df321c + b459c98 commit 8fe13b7
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,10 @@ protected static QuarkusUnitTest getRunner(String applicationProperties) {
.addPackage("io.quarkus.resteasy.reactive.server.test.security.inheritance.multiple.pathonbase")
.addClasses(TestIdentityProvider.class, TestIdentityController.class, SecurityAnnotation.class,
SubPaths.class, JsonObjectReader.class)
.addAsResource(new StringAsset(applicationProperties + System.lineSeparator()),
.addAsResource(
new StringAsset(applicationProperties + System.lineSeparator()
+ "quarkus.log.category.\"io.quarkus.vertx.http.runtime.QuarkusErrorHandler\".level=OFF"
+ System.lineSeparator()),
"application.properties"));
}

Expand Down

0 comments on commit 8fe13b7

Please sign in to comment.