diff --git a/interop/xds/client/Dockerfile b/interop/xds/client/Dockerfile index 5b6e3f61c5e1..fa5a710d0b6b 100644 --- a/interop/xds/client/Dockerfile +++ b/interop/xds/client/Dockerfile @@ -31,7 +31,7 @@ RUN go build -tags osusergo,netgo interop/xds/client/client.go # reduces the docker image size. FROM alpine COPY --from=build /go/src/grpc-go/client . -ENV GRPC_GO_LOG_VERBOSITY_LEVEL=2 +ENV GRPC_GO_LOG_VERBOSITY_LEVEL=99 ENV GRPC_GO_LOG_SEVERITY_LEVEL="info" ENV GRPC_GO_LOG_FORMATTER="json" ENTRYPOINT ["./client"] diff --git a/interop/xds/server/Dockerfile b/interop/xds/server/Dockerfile index f7d1cf0ff022..534fdc12d39b 100644 --- a/interop/xds/server/Dockerfile +++ b/interop/xds/server/Dockerfile @@ -31,7 +31,7 @@ RUN go build -tags osusergo,netgo interop/xds/server/server.go # reduces the docker image size. FROM alpine COPY --from=build /go/src/grpc-go/server . -ENV GRPC_GO_LOG_VERBOSITY_LEVEL=2 +ENV GRPC_GO_LOG_VERBOSITY_LEVEL=99 ENV GRPC_GO_LOG_SEVERITY_LEVEL="info" ENV GRPC_GO_LOG_FORMATTER="json" ENTRYPOINT ["./server"]