Finish implementing LUA_PROBE
This commit is contained in:
@@ -31,11 +31,12 @@ eng::string Invocation::debug_string() const {
|
||||
oss << "inv[";
|
||||
switch (kind_) {
|
||||
case InvocationKind::INVALID: oss << "invalid"; break;
|
||||
case InvocationKind::LUA_CALL: oss << "lua_call"; break;
|
||||
case InvocationKind::LUA_EXPR: oss << "lua"; break;
|
||||
case InvocationKind::LUA_INVOKE: oss << "lua_invoke"; break;
|
||||
case InvocationKind::LUA_PROBE: oss << "lua_probe"; break;
|
||||
case InvocationKind::LUA_EXPR: oss << "lua_expr"; break;
|
||||
case InvocationKind::LUA_SOURCE: oss << "lua_source"; break;
|
||||
case InvocationKind::FLUSH_PRINTS: oss << "flush_prints"; break;
|
||||
case InvocationKind::TICK: oss << "tick"; break;
|
||||
case InvocationKind::LUA_SOURCE: oss << "lua_source"; break;
|
||||
default: oss << "UNKNOWN"; break;
|
||||
}
|
||||
oss << " a=" << actor_;
|
||||
|
||||
Reference in New Issue
Block a user