mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
pionlog to own folder.
This commit is contained in:
parent
1dab0bd859
commit
e812cb9fbf
@ -19,6 +19,7 @@ import (
|
|||||||
"demodesk/neko/internal/types/event"
|
"demodesk/neko/internal/types/event"
|
||||||
"demodesk/neko/internal/types/message"
|
"demodesk/neko/internal/types/message"
|
||||||
"demodesk/neko/internal/webrtc/cursor"
|
"demodesk/neko/internal/webrtc/cursor"
|
||||||
|
"demodesk/neko/internal/webrtc/pionlog"
|
||||||
)
|
)
|
||||||
|
|
||||||
// the duration without network activity before a Agent is considered disconnected. Default is 5 Seconds
|
// the duration without network activity before a Agent is considered disconnected. Default is 5 Seconds
|
||||||
@ -237,10 +238,9 @@ func (manager *WebRTCManagerCtx) CreatePeer(session types.Session, videoID strin
|
|||||||
|
|
||||||
peer := &WebRTCPeerCtx{
|
peer := &WebRTCPeerCtx{
|
||||||
logger: logger,
|
logger: logger,
|
||||||
api: api,
|
|
||||||
connection: connection,
|
connection: connection,
|
||||||
changeVideo: changeVideo,
|
|
||||||
dataChannel: dataChannel,
|
dataChannel: dataChannel,
|
||||||
|
changeVideo: changeVideo,
|
||||||
iceTrickle: manager.config.ICETrickle,
|
iceTrickle: manager.config.ICETrickle,
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -373,9 +373,7 @@ func (manager *WebRTCManagerCtx) mediaEngine(videoID string) (*webrtc.MediaEngin
|
|||||||
|
|
||||||
func (manager *WebRTCManagerCtx) apiSettings(logger zerolog.Logger) webrtc.SettingEngine {
|
func (manager *WebRTCManagerCtx) apiSettings(logger zerolog.Logger) webrtc.SettingEngine {
|
||||||
settings := webrtc.SettingEngine{
|
settings := webrtc.SettingEngine{
|
||||||
LoggerFactory: loggerFactory{
|
LoggerFactory: pionlog.New(logger),
|
||||||
logger: logger,
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//nolint
|
//nolint
|
||||||
|
@ -10,7 +10,6 @@ import (
|
|||||||
type WebRTCPeerCtx struct {
|
type WebRTCPeerCtx struct {
|
||||||
mu sync.Mutex
|
mu sync.Mutex
|
||||||
logger zerolog.Logger
|
logger zerolog.Logger
|
||||||
api *webrtc.API
|
|
||||||
connection *webrtc.PeerConnection
|
connection *webrtc.PeerConnection
|
||||||
dataChannel *webrtc.DataChannel
|
dataChannel *webrtc.DataChannel
|
||||||
changeVideo func(videoID string) error
|
changeVideo func(videoID string) error
|
||||||
|
27
internal/webrtc/pionlog/factory.go
Normal file
27
internal/webrtc/pionlog/factory.go
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
package pionlog
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/pion/logging"
|
||||||
|
"github.com/rs/zerolog"
|
||||||
|
)
|
||||||
|
|
||||||
|
func New(logger zerolog.Logger) Factory {
|
||||||
|
return Factory{
|
||||||
|
Logger: logger.With().Str("submodule", "pion").Logger(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
type Factory struct {
|
||||||
|
Logger zerolog.Logger
|
||||||
|
}
|
||||||
|
|
||||||
|
func (l Factory) NewLogger(subsystem string) logging.LeveledLogger {
|
||||||
|
if subsystem == "sctp" {
|
||||||
|
return nulllog{}
|
||||||
|
}
|
||||||
|
|
||||||
|
return logger{
|
||||||
|
subsystem: subsystem,
|
||||||
|
logger: l.Logger.With().Str("subsystem", subsystem).Logger(),
|
||||||
|
}
|
||||||
|
}
|
@ -1,26 +1,12 @@
|
|||||||
package webrtc
|
package pionlog
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/pion/logging"
|
|
||||||
"github.com/rs/zerolog"
|
"github.com/rs/zerolog"
|
||||||
)
|
)
|
||||||
|
|
||||||
type nulllog struct{}
|
|
||||||
|
|
||||||
func (l nulllog) Trace(msg string) {}
|
|
||||||
func (l nulllog) Tracef(format string, args ...interface{}) {}
|
|
||||||
func (l nulllog) Debug(msg string) {}
|
|
||||||
func (l nulllog) Debugf(format string, args ...interface{}) {}
|
|
||||||
func (l nulllog) Info(msg string) {}
|
|
||||||
func (l nulllog) Infof(format string, args ...interface{}) {}
|
|
||||||
func (l nulllog) Warn(msg string) {}
|
|
||||||
func (l nulllog) Warnf(format string, args ...interface{}) {}
|
|
||||||
func (l nulllog) Error(msg string) {}
|
|
||||||
func (l nulllog) Errorf(format string, args ...interface{}) {}
|
|
||||||
|
|
||||||
type logger struct {
|
type logger struct {
|
||||||
logger zerolog.Logger
|
logger zerolog.Logger
|
||||||
subsystem string
|
subsystem string
|
||||||
@ -69,18 +55,3 @@ func (l logger) Errorf(format string, args ...interface{}) {
|
|||||||
msg := fmt.Sprintf(format, args...)
|
msg := fmt.Sprintf(format, args...)
|
||||||
l.logger.Error().Msg(strings.TrimSpace(msg))
|
l.logger.Error().Msg(strings.TrimSpace(msg))
|
||||||
}
|
}
|
||||||
|
|
||||||
type loggerFactory struct {
|
|
||||||
logger zerolog.Logger
|
|
||||||
}
|
|
||||||
|
|
||||||
func (l loggerFactory) NewLogger(subsystem string) logging.LeveledLogger {
|
|
||||||
if subsystem == "sctp" {
|
|
||||||
return nulllog{}
|
|
||||||
}
|
|
||||||
|
|
||||||
return logger{
|
|
||||||
subsystem: subsystem,
|
|
||||||
logger: l.logger.With().Str("submodule", "pion").Str("subsystem", subsystem).Logger(),
|
|
||||||
}
|
|
||||||
}
|
|
14
internal/webrtc/pionlog/nullog.go
Normal file
14
internal/webrtc/pionlog/nullog.go
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
package pionlog
|
||||||
|
|
||||||
|
type nulllog struct{}
|
||||||
|
|
||||||
|
func (l nulllog) Trace(msg string) {}
|
||||||
|
func (l nulllog) Tracef(format string, args ...interface{}) {}
|
||||||
|
func (l nulllog) Debug(msg string) {}
|
||||||
|
func (l nulllog) Debugf(format string, args ...interface{}) {}
|
||||||
|
func (l nulllog) Info(msg string) {}
|
||||||
|
func (l nulllog) Infof(format string, args ...interface{}) {}
|
||||||
|
func (l nulllog) Warn(msg string) {}
|
||||||
|
func (l nulllog) Warnf(format string, args ...interface{}) {}
|
||||||
|
func (l nulllog) Error(msg string) {}
|
||||||
|
func (l nulllog) Errorf(format string, args ...interface{}) {}
|
Loading…
Reference in New Issue
Block a user