| 1080 | } |
| 1081 | |
| 1082 | void _serverAssertPrintObject(robj_roptr o) { |
| 1083 | bugReportStart(); |
| 1084 | serverLog(LL_WARNING,"=== ASSERTION FAILED OBJECT CONTEXT ==="); |
| 1085 | serverLogObjectDebugInfo(o); |
| 1086 | } |
| 1087 | |
| 1088 | void _serverAssertWithInfo(const client *c, robj_roptr o, const char *estr, const char *file, int line) { |
| 1089 | if (c) _serverAssertPrintClientInfo(c); |
no test coverage detected