hello: Move from f2

This commit is contained in:
Łukasz Magiera
2019-07-03 19:39:07 +02:00
parent 46a5019c8d
commit fdde4db217
13 changed files with 208 additions and 7 deletions
+17
View File
@@ -0,0 +1,17 @@
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)