Files
gortsplib/loglevel.go
Alessandro Ros 2fbba142cc add OnTransportSwitch, OnPacketLost, OnDecodeError to server and client (#225)
These new hooks replace the generic hooks Log() and OnWarning().
2023-04-04 17:10:37 +02:00

17 lines
247 B
Go

package gortsplib
// LogLevel is a log level.
//
// Deprecated: Log() is deprecated.
type LogLevel int
// Log levels.
//
// Deprecated: Log() is deprecated.
const (
LogLevelDebug LogLevel = iota + 1
LogLevelInfo
LogLevelWarn
LogLevelError
)