mirror of
https://github.com/kepler155c/opus
synced 2025-12-17 05:38:07 +00:00
change _debug to _syslog
This commit is contained in:
@@ -28,19 +28,13 @@ local focusedRoutineEvents = Util.transpose {
|
||||
'paste', 'terminate',
|
||||
}
|
||||
|
||||
_G._debug = function(pattern, ...)
|
||||
_G._syslog = function(pattern, ...)
|
||||
local oldTerm = term.redirect(kernel.window)
|
||||
kernel.window.scrollBottom()
|
||||
Util.print(pattern, ...)
|
||||
term.redirect(oldTerm)
|
||||
end
|
||||
|
||||
if not _G.debug then -- don't clobber lua debugger
|
||||
function _G.debug(...)
|
||||
_G._debug(...)
|
||||
end
|
||||
end
|
||||
|
||||
-- any function that runs in a kernel hook does not run in
|
||||
-- a separate coroutine or have a window. an error in a hook
|
||||
-- function will crash the system.
|
||||
|
||||
Reference in New Issue
Block a user