@@ -77,8 +77,7 @@ local ctab = {
77
77
TIMEEVENT = ac .yellow .. ac .bright
78
78
}
79
79
80
- --- Colorized fsm.dbg hook replacement.
81
- function dbgcolor (name , ...)
80
+ function dbgcolorize (name , ...)
82
81
local str = " "
83
82
local args = { ... }
84
83
@@ -93,21 +92,29 @@ function dbgcolor(name, ...)
93
92
else
94
93
str = str .. utils .rpad (ptab [1 ], pad ) .. table.concat (ptab , ' ' , 2 )
95
94
end
96
- print (str )
95
+
96
+ return str
97
+ end
98
+
99
+ --- Colorized fsm.dbg hook replacement.
100
+ function dbgcolor (name , ...)
101
+ print (dbgcolorize (name , ... ))
97
102
end
98
103
99
104
--- Generate a configurable dbgcolor function.
100
105
-- @param name string name to prepend to printed message.
101
106
-- @param ftab table of the dbg ids to print.
102
107
-- @param defshow if false fields not mentioned in ftab are not shown. If true they are.
103
- function gen_dbgcolor (name , ftab , defshow )
108
+ -- @param print_fcn a function actually used for printing. Defaults to print.
109
+ function gen_dbgcolor (name , ftab , defshow , print_fcn )
104
110
name = name or " <unnamed SM>"
105
111
ftab = ftab or {}
106
112
if defshow == nil then defshow = true end
113
+ if print_fcn == nil then print_fcn = print end
107
114
108
115
return function (tag , ...)
109
- if ftab [tag ] == true then dbgcolor ( name , tag , ... )
110
- elseif ftab [tag ] == false then return
111
- else if defshow then dbgcolor ( name , tag , ... ) end end
112
- end
116
+ if ftab [tag ] == true then print_fcn ( dbgcolorize ( name , tag , ... ) )
117
+ elseif ftab [tag ] == false then return
118
+ else if defshow then print_fcn ( dbgcolorize ( name , tag , ... ) ) end end
119
+ end
113
120
end
0 commit comments