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. */
| 2299 | * currently on the top of the stack. The element is ot popped nor modified. |
| 2300 | * Check ldbCatStackValue() for the actual implementation. */ |
| 2301 | void ldbLogStackValue(lua_State *lua, char *prefix) { |
| 2302 | sds s = sdsnew(prefix); |
| 2303 | s = ldbCatStackValue(s,lua,-1); |
| 2304 | ldbLogWithMaxLen(s); |
| 2305 | } |
| 2306 | |
| 2307 | char *ldbRedisProtocolToHuman_Int(sds *o, char *reply); |
| 2308 | char *ldbRedisProtocolToHuman_Bulk(sds *o, char *reply); |
no test coverage detected