mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2025-09-19 12:06:01 +08:00
19 lines
259 B
Go
19 lines
259 B
Go
package js
|
|
|
|
import "github.com/Dreamacro/clash/log"
|
|
|
|
type JsLog struct {
|
|
}
|
|
|
|
func (j JsLog) Log(s string) {
|
|
log.Infoln("[JS] %s", s)
|
|
}
|
|
|
|
func (j JsLog) Warn(s string) {
|
|
log.Warnln("[JS] %s", s)
|
|
}
|
|
|
|
func (j JsLog) Error(s string) {
|
|
log.Errorln("[JS] %s", s)
|
|
}
|