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 a49850a commit a24c630Copy full SHA for a24c630
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