We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4310c7c commit a00c6e5Copy full SHA for a00c6e5
tracer/src/Datadog.Trace/Logging/Internal/DatadogLoggingFactory.cs
@@ -170,7 +170,7 @@ internal static string GetLogDirectory(IConfigurationTelemetry telemetry)
170
171
private static string GetLogDirectory(IConfigurationSource source, IConfigurationTelemetry telemetry)
172
{
173
- var logDirectory = new ConfigurationBuilder(source, telemetry).WithKeys(ConfigurationKeys.LogDirectory).AsString();
+ var logDirectory = new ConfigurationBuilder(source, telemetry).WithKeyNoAliasLookup(ConfigurationKeys.LogDirectory).AsString();
174
if (string.IsNullOrEmpty(logDirectory))
175
176
#pragma warning disable 618 // ProfilerLogPath is deprecated but still supported
0 commit comments