mirror of https://github.com/jetkvm/kvm.git
18 lines
332 B
Go
18 lines
332 B
Go
package native
|
|
|
|
import (
|
|
"github.com/jetkvm/kvm/internal/logging"
|
|
"github.com/rs/zerolog"
|
|
)
|
|
|
|
var nativeLogger = logging.GetSubsystemLogger("native")
|
|
var displayLogger = logging.GetSubsystemLogger("display")
|
|
|
|
type nativeLogMessage struct {
|
|
Level zerolog.Level
|
|
Message string
|
|
File string
|
|
FuncName string
|
|
Line int
|
|
}
|