From 69a038724a1c7dd811eaeff3c4d808563113ede2 Mon Sep 17 00:00:00 2001 From: Ariel Valentin Date: Wed, 15 Jan 2025 22:15:41 -0600 Subject: [PATCH] ci: Silence Kafka Logs They are a bit verbose and make it difficult to inspect test output when it is mixed in with service logs Hopefully this will help us a bit --- .github/workflows/ci-instrumentation-with-services.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci-instrumentation-with-services.yml b/.github/workflows/ci-instrumentation-with-services.yml index e30123ae7..3269fc6b8 100644 --- a/.github/workflows/ci-instrumentation-with-services.yml +++ b/.github/workflows/ci-instrumentation-with-services.yml @@ -141,6 +141,7 @@ jobs: env: ZOOKEEPER_CLIENT_PORT: 2181 ZOOKEEPER_TICK_TIME: 2000 + ZOO_LOG4J_PROP: "ERROR,CONSOLE" kafka: image: confluentinc/cp-kafka:latest ports: @@ -153,6 +154,7 @@ jobs: KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT KAFKA_INTER_BROKER_LISTENER_NAME: PLAINTEXT KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1 + KAFKA_LOG4J_LOGGERS: "org.apache.kafka=ERROR" instrumentation_redis: strategy: