| 17 | } |
| 18 | |
| 19 | static int l_debug_log(lua::State* L) { |
| 20 | auto text = lua::require_string(L, 1); |
| 21 | logger.info() << text; |
| 22 | return 0; |
| 23 | } |
| 24 | |
| 25 | void initialize_libs_extends(lua::State* L) { |
| 26 | if (lua::getglobal(L, "debug")) { |
nothing calls this directly
no test coverage detected