Skip to content

Commit

Permalink
Reduce log clutter in security tests
Browse files Browse the repository at this point in the history
Fixes: #43017
  • Loading branch information
geoand committed Sep 4, 2024
1 parent c0c560a commit b459c98
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 b459c98

Please sign in to comment.