mirror of https://github.com/jetkvm/kvm.git
11 lines
387 B
Go
11 lines
387 B
Go
package logging
|
|
|
|
import "github.com/pion/logging"
|
|
|
|
// we use logging framework from pion
|
|
// ref: https://github.com/pion/webrtc/wiki/Debugging-WebRTC
|
|
var Logger = logging.NewDefaultLoggerFactory().NewLogger("jetkvm")
|
|
var UsbLogger = logging.NewDefaultLoggerFactory().NewLogger("usb")
|
|
|
|
// Ideally you would implement some kind of logging system here with our own custom logging functions
|