Produce a debugger log entry representing the value of the Lua object * currently on the top of the stack. The element is ot popped nor modified. * Check ldbCatStackValue() for the actual implementation. */
| 2322 | * currently on the top of the stack. The element is ot popped nor modified. |
| 2323 | * Check ldbCatStackValue() for the actual implementation. */ |
| 2324 | void ldbLogStackValue(lua_State *lua, const char *prefix) { |
| 2325 | sds s = sdsnew(prefix); |
| 2326 | s = ldbCatStackValue(s,lua,-1); |
| 2327 | ldbLogWithMaxLen(s); |
| 2328 | } |
| 2329 | |
| 2330 | char *ldbRedisProtocolToHuman_Int(sds *o, char *reply); |
| 2331 | char *ldbRedisProtocolToHuman_Bulk(sds *o, char *reply); |
no test coverage detected