mi-v1/cmd/mi/logrus.go

13 lines
132 B
Go
Raw Normal View History

2020-01-14 22:37:35 +00:00
package main
import (
"os"
r "gopkg.in/rethinkdb/rethinkdb-go.v6"
)
func init() {
r.SetVerbose(true)
r.Log.Out = os.Stderr
}