18 lines
256 B
Go
18 lines
256 B
Go
package node
|
|
|
|
import (
|
|
logging "github.com/ipfs/go-log"
|
|
|
|
"go.uber.org/fx"
|
|
)
|
|
|
|
type debugPrinter struct {
|
|
l logging.StandardLogger
|
|
}
|
|
|
|
func (p *debugPrinter) Printf(f string, a ...interface{}) {
|
|
p.l.Debugf(f, a...)
|
|
}
|
|
|
|
var _ fx.Printer = new(debugPrinter)
|