Merge branch 'supress_webrtc_logs'

This commit is contained in:
Matt Joiner 2022-04-11 14:53:35 +10:00
commit 7671a55a5c
No known key found for this signature in database
GPG Key ID: 6B990B8185E7F782
4 changed files with 38 additions and 3 deletions

View File

@ -60,7 +60,7 @@ jobs:
- uses: actions/checkout@v2
- uses: ./.github/actions/go-common
- name: Some packages compile for WebAssembly
run: GOOS=js GOARCH=wasm go build -v . ./storage ./tracker/...
run: GOOS=js GOARCH=wasm go build . ./storage ./tracker/...
torrentfs:
runs-on: ubuntu-latest

View File

@ -0,0 +1,24 @@
// These build constraints are copied from webrtc's settingengine.go.
//go:build !js
// +build !js
package webtorrent
import (
"io"
"github.com/pion/logging"
"github.com/pion/webrtc/v3"
)
var s = webrtc.SettingEngine{
// This could probably be done with better integration into anacrolix/log, but I'm not sure if
// it's worth the effort.
LoggerFactory: discardLoggerFactory{},
}
type discardLoggerFactory struct{}
func (discardLoggerFactory) NewLogger(scope string) logging.LeveledLogger {
return logging.NewDefaultLeveledLoggerForScope(scope, logging.LogLevelInfo, io.Discard)
}

View File

@ -0,0 +1,13 @@
// These build constraints are copied from webrtc's settingengine_js.go.
//go:build js && wasm
// +build js,wasm
package webtorrent
import (
"github.com/pion/webrtc/v3"
)
// I'm not sure what to do for logging for JS. See
// https://gophers.slack.com/archives/CAK2124AG/p1649651943947579.
var s = webrtc.SettingEngine{}

View File

@ -8,7 +8,6 @@ import (
"github.com/anacrolix/missinggo/v2/pproffd"
"github.com/pion/datachannel"
"github.com/pion/webrtc/v3"
)
@ -16,7 +15,6 @@ var (
metrics = expvar.NewMap("webtorrent")
api = func() *webrtc.API {
// Enable the detach API (since it's non-standard but more idiomatic).
s := webrtc.SettingEngine{}
s.DetachDataChannels()
return webrtc.NewAPI(webrtc.WithSettingEngine(s))
}()