safesight-edge/agent/internal/log/log.go
sladro 5f69321b40
Some checks are pending
CI / host-build (push) Waiting to run
CI / rk3588-cross-build (push) Waiting to run
准备测试agent服务能力
2026-01-10 09:27:13 +08:00

10 lines
201 B
Go

package log
import (
"log"
)
func Info(msg string) { log.Printf("[INFO] %s", msg) }
func Warn(msg string) { log.Printf("[WARN] %s", msg) }
func Error(msg string) { log.Printf("[ERROR] %s", msg) }