mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-06 06:27:38 +03:00
28 lines
504 B
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)
|
|
}
|