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 75bd62d commit d9ae8ceCopy full SHA for d9ae8ce
otelconf/config_yaml.go
@@ -96,10 +96,10 @@ func (j *OpenTelemetryConfiguration) UnmarshalYAML(node *yaml.Node) error {
96
sh.Plain.InstrumentationDevelopment = sh.InstrumentationDevelopment
97
}
98
99
- if sh.Plain.LogLevel == nil {
+ if sh.LogLevel == nil {
100
// Configure the log level of the internal logger used by the SDK.
101
// If omitted, info is used.
102
- sh.Plain.LogLevel = ptr("info")
+ sh.LogLevel = ptr("info")
103
104
105
*j = OpenTelemetryConfiguration(sh.Plain)
0 commit comments