Skip to content

Commit 0c6a047

Browse files
authored
Remove armeria log decorator to clean up build logs (#7232)
1 parent 22acb3e commit 0c6a047

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exporters/otlp/testing-internal/src/main/java/io/opentelemetry/exporter/otlp/testing/internal/AbstractHttpTelemetryExporterTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
import com.linecorp.armeria.server.HttpService;
2323
import com.linecorp.armeria.server.ServerBuilder;
2424
import com.linecorp.armeria.server.ServiceRequestContext;
25-
import com.linecorp.armeria.server.logging.LoggingService;
2625
import com.linecorp.armeria.testing.junit5.server.SelfSignedCertificateExtension;
2726
import com.linecorp.armeria.testing.junit5.server.ServerExtension;
2827
import io.github.netmikey.logunit.api.LogCapturer;
@@ -149,7 +148,8 @@ protected void configure(ServerBuilder sb) {
149148
sb.https(0);
150149
sb.tls(TlsKeyPair.of(certificate.privateKey(), certificate.certificate()));
151150
sb.tlsCustomizer(ssl -> ssl.trustManager(clientCertificate.certificate()));
152-
sb.decorator(LoggingService.newDecorator());
151+
// Uncomment for detailed request / response logs from server
152+
// sb.decorator(LoggingService.newDecorator());
153153
}
154154
};
155155

0 commit comments

Comments
 (0)