1
0
mirror of https://github.com/Adorable-Catgirl/Zorya-NEO.git synced 2024-09-21 10:48:50 +10:00
Zorya-NEO/mods/util_log2disk/init.lua
Jane Roxanne 25779bd202 VFS time
2020-03-12 16:01:05 -05:00

15 lines
362 B
Lua

local vdev = krequire("util_vcomponent")
local utils = krequire("utils")
local component = component
return function(fs, file)
local px = component.proxy(fs)
local fh = px.open(file, "w")
utils.debug_log("test")
vdev.register("vdev-ZY_LOG2FILE", "sandbox", {
log = function(...)
px.write(fh, table.concat({...}, " ").."\n")
end
})
return true
end