From 39ca1bff83a5ca1c64831ce5c0e61d5f319feb13 Mon Sep 17 00:00:00 2001 From: Martijn Laarman Date: Tue, 16 Jul 2024 10:51:37 +0200 Subject: [PATCH] fix post merge test failure --- .../Configuration/GlobalLogConfigurationTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Elastic.OpenTelemetry.Tests/Configuration/GlobalLogConfigurationTests.cs b/tests/Elastic.OpenTelemetry.Tests/Configuration/GlobalLogConfigurationTests.cs index a38c2b2..c18d584 100644 --- a/tests/Elastic.OpenTelemetry.Tests/Configuration/GlobalLogConfigurationTests.cs +++ b/tests/Elastic.OpenTelemetry.Tests/Configuration/GlobalLogConfigurationTests.cs @@ -37,7 +37,7 @@ public void CheckActivation(string environmentVariable, string value) // [Theory] [InlineData(OTEL_LOG_LEVEL, "none")] - [InlineData(OTEL_LOG_LEVEL, "Debug")] + [InlineData(OTEL_LOG_LEVEL, "info")] //only if explicitly specified to 'none' should we not default to file logging. [InlineData(ELASTIC_OTEL_LOG_TARGETS, "none")] public void CheckDeactivation(string environmentVariable, string value)