mirror of
https://github.com/bluenviron/mediamtx
synced 2024-12-14 18:54:54 +00:00
13 lines
125 B
Go
13 lines
125 B
Go
package logger
|
|
|
|
// Level is a log level.
|
|
type Level int
|
|
|
|
// Log levels.
|
|
const (
|
|
Debug Level = iota + 1
|
|
Info
|
|
Warn
|
|
Error
|
|
)
|