Skip to content

Commit 621aa45

Browse files
committed
fix: debug print stdout
1 parent 4917537 commit 621aa45

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

internal/core/services/coldstarter/handler/lua_handler.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ func (handler *LuaHandler) Handle(data []byte, funcs map[string]func(data ...str
5959
l.SetGlobal("debug_print", l.NewFunction(
6060
func(l *lua.LState) int {
6161
arg := l.CheckString(1)
62-
logger.Log().Debug(arg)
62+
logger.Log().Info(arg)
6363
return 0
6464
},
6565
))

0 commit comments

Comments
 (0)