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

Add an "Underlier" interface #5

Merged
merged 1 commit into from
Oct 12, 2020
Merged

Add an "Underlier" interface #5

merged 1 commit into from
Oct 12, 2020

Conversation

thockin
Copy link
Collaborator

@thockin thockin commented Sep 4, 2020

xref: go-logr/logr#11

Example:

if under, ok := log.(stdr.Underlier); ok {
    if stdLogger, ok := under.GetUnderlying().(*stdlog.Logger); ok {
        stdLogger.Printf("Hello")
    }
}

Example:

    if under, ok := log.(stdr.Underlier); ok {
        if stdLogger, ok := under.GetUnderlying().(*stdlog.Logger); ok {
            stdLogger.Printf("Hello")
        }
    }
@thockin
Copy link
Collaborator Author

thockin commented Oct 12, 2020

As per @DirectXMan12 offline

@thockin thockin merged commit 2e39664 into go-logr:master Oct 12, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants