maddy/internal/msgpipeline/objname.go

28 lines
504 B
Go

package msgpipeline
import (
"fmt"
"github.com/foxcpp/maddy/framework/module"
)
// objectName returns a new that is usable to identify the used external
// component (module or some stub) in debug logs.
func objectName(x interface{}) string {
mod, ok := x.(module.Module)
if ok {
return mod.Name() + ":" + mod.InstanceName()
}
_, pipeline := x.(*MsgPipeline)
if pipeline {
return "reroute"
}
str, ok := x.(fmt.Stringer)
if ok {
return str.String()
}
return fmt.Sprintf("%T", x)
}