-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdebug.lua
More file actions
70 lines (20 loc) · 645 Bytes
/
debug.lua
File metadata and controls
70 lines (20 loc) · 645 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
local _tl_compat; if (tonumber((_VERSION or ''):match('[%d.]*$')) or 0) < 5.3 then local p, m = pcall(require, 'compat53.module'); if p then _tl_compat = m end end; local assert = _tl_compat and _tl_compat.assert or assert
require('mobdebug').listen()
local function debug_print(id, ...)
print(id, ...)
end
local function set_filter(setup)
end
local PrintCallback = {}
local printCallback = function(s)
print(s)
end
local function set_callback(cb)
assert(cb)
printCallback = cb
end
return {
debug_print = debug_print,
set_filter = set_filter,
set_callback = set_callback,
}