Skip to content
New issue

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

All infrastructure for LogRecord is internal #6188

Open
jeremy-morren opened this issue Mar 14, 2025 · 1 comment
Open

All infrastructure for LogRecord is internal #6188

jeremy-morren opened this issue Mar 14, 2025 · 1 comment
Labels
enhancement New feature or request needs-triage New issues which have not been classified or triaged by a community member pkg:OpenTelemetry Issues related to OpenTelemetry NuGet package

Comments

@jeremy-morren
Copy link

jeremy-morren commented Mar 14, 2025

Package

OpenTelemetry

Is your feature request related to a problem?

All infrastructure (pool, constructors) for LogRecord is internal. This makes it impossible without reflection to create any kind of logging infrastructure that emits LogRecord.

What is the expected behavior?

At minimum, make LogRecord constructor public.

Create public property for ScopeProvider, which cannot be set at all right now.

public IExternalScopeProvider? ScopeProvider
{
    get => this.ILoggerData.ScopeProvider;
    set => this.ILoggerData.ScopeProvider = value;
}

Which alternative solutions or features have you considered?

Make an implementation of ILogRecordPool public so that Rent() and Return methods can be used.

@jeremy-morren jeremy-morren added enhancement New feature or request needs-triage New issues which have not been classified or triaged by a community member labels Mar 14, 2025
@github-actions github-actions bot added the pkg:OpenTelemetry Issues related to OpenTelemetry NuGet package label Mar 14, 2025
@TimothyMothra
Copy link
Contributor

Hi @jeremy-morren, I'm trying to understand this issue.
Can you please share more details about your workflow, what you're trying to accomplish?

I don't have full context on the LogRecord implementation, but my understanding is that users would interact with the ILogger APIs.
We're not likely to make the full implementation public, but if there's a specific scenario that you can't accomplish that would help us scope to what's needed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request needs-triage New issues which have not been classified or triaged by a community member pkg:OpenTelemetry Issues related to OpenTelemetry NuGet package
Projects
None yet
Development

No branches or pull requests

2 participants