You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/threader.lua
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -490,7 +490,7 @@ function threader.routine(fun, ...)
490
490
return {fun(unpack(args))}
491
491
end,
492
492
function(err)
493
-
logger.error(id, err)
493
+
log.error(id, err)
494
494
iftype(err) =="userdata" ortype(err) =="table" then
495
495
returnerr
496
496
end
@@ -533,9 +533,9 @@ function threader.update()
533
533
ifrunningthen
534
534
localstatus=coroutine.status(running.routine)
535
535
ifstatus~="running" then
536
-
logger.warning("threader.update called from within a " .. (running.waitingand"waiting " or"") .." ZOMBIE threader coroutine (" ..running.id..", " ..status.."), possibly via a native callback during coroutine.yield")
536
+
log.warning("threader.update called from within a " .. (running.waitingand"waiting " or"") .." ZOMBIE threader coroutine (" ..running.id..", " ..status.."), possibly via a native callback during coroutine.yield")
537
537
else
538
-
logger.warning("threader.update called from within a " .. (running.waitingand"waiting " or"") .."threader coroutine (" ..running.id.."), possibly via a native callback during coroutine.yield")
538
+
log.warning("threader.update called from within a " .. (running.waitingand"waiting " or"") .."threader coroutine (" ..running.id.."), possibly via a native callback during coroutine.yield")
0 commit comments