We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There is a misprint within resource.Environment() method that leads to the following log entry:
2021/04/27 17:32:32 < nil >
The condition has to be if err != nil
opts []trace.TracerProviderOption opts = append(opts , trace.WithResource(resource.NewWithAttributes(semconv.ServiceNameKey.String("Test service")))) tp := sdktrace.NewTracerProvider(opts ...)
There should not be 2021/04/27 17:32:32 < nil > log entry.
The text was updated successfully, but these errors were encountered:
MrAlias
Successfully merging a pull request may close this issue.
Description
There is a misprint within resource.Environment() method that leads to the following log entry:
The condition has to be if err != nil
Steps To Reproduce
Expected behavior
There should not be 2021/04/27 17:32:32 < nil > log entry.
The text was updated successfully, but these errors were encountered: