Exit debugging mode from the POV of client. This function is not enough * to properly shut down a client debugging session, see ldbEndSession() * for more information. */
| 1877 | * to properly shut down a client debugging session, see ldbEndSession() |
| 1878 | * for more information. */ |
| 1879 | void ldbDisable(client *c) { |
| 1880 | c->flags &= ~(CLIENT_LUA_DEBUG|CLIENT_LUA_DEBUG_SYNC); |
| 1881 | } |
| 1882 | |
| 1883 | /* Append a log entry to the specified LDB log. */ |
| 1884 | void ldbLog(sds entry) { |
no outgoing calls
no test coverage detected