You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
527 B
22 lines
527 B
package main
|
|
|
|
import g "tgk-touch/internal/global"
|
|
|
|
const kioskLogPrefix = "[touch-kiosk]"
|
|
|
|
func kioskInfof(format string, args ...interface{}) {
|
|
g.Log().Infof(kioskLogPrefix+" "+format, args...)
|
|
}
|
|
|
|
func kioskDebugf(format string, args ...interface{}) {
|
|
g.Log().Debugf(kioskLogPrefix+" "+format, args...)
|
|
}
|
|
|
|
func kioskWarnf(format string, args ...interface{}) {
|
|
g.Log().Warnf(kioskLogPrefix+" "+format, args...)
|
|
}
|
|
|
|
func kioskErrorf(format string, args ...interface{}) {
|
|
g.Log().Errorf(kioskLogPrefix+" "+format, args...)
|
|
}
|