log: remove support for traces (#7542)

This commit is contained in:
Sam Kleinman
2022-01-10 13:56:42 -05:00
committed by GitHub
parent f19f84bc8c
commit 0f3f2aa4bc
18 changed files with 23 additions and 36 deletions
+1 -1
View File
@@ -19,7 +19,7 @@ var mux *http.ServeMux
func init() {
mux = http.NewServeMux()
lgr := log.MustNewDefaultLogger(log.LogFormatPlain, log.LogLevelInfo, false)
lgr := log.MustNewDefaultLogger(log.LogFormatPlain, log.LogLevelInfo)
rs.RegisterRPCFuncs(mux, rpcFuncMap, lgr)
}