| 973 | } |
| 974 | |
| 975 | void _serverAssertPrintObject(const robj *o) { |
| 976 | bugReportStart(); |
| 977 | serverLog(LL_WARNING,"=== ASSERTION FAILED OBJECT CONTEXT ==="); |
| 978 | serverLogObjectDebugInfo(o); |
| 979 | } |
| 980 | |
| 981 | void _serverAssertWithInfo(const client *c, const robj *o, const char *estr, const char *file, int line) { |
| 982 | if (c) _serverAssertPrintClientInfo(c); |
no test coverage detected