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. */
| 1900 | * to properly shut down a client debugging session, see ldbEndSession() |
| 1901 | * for more information. */ |
| 1902 | void ldbDisable(client *c) { |
| 1903 | c->flags &= ~(CLIENT_LUA_DEBUG|CLIENT_LUA_DEBUG_SYNC); |
| 1904 | } |
| 1905 | |
| 1906 | /* Append a log entry to the specified LDB log. */ |
| 1907 | void ldbLog(sds entry) { |
no outgoing calls
no test coverage detected