v0.3.0
Adds Underlier interface with GetUnderlying() which callers can use if they know the implementation and need direct access.
Example:
if under, ok := log.(stdr.Underlier); ok {
if stdLogger, ok := under.GetUnderlying().(*stdlog.Logger); ok {
stdLogger.Printf("Hello")
}
}