Log modules info. Something we wanna do last since we fear it may crash. */
| 1594 | |
| 1595 | /* Log modules info. Something we wanna do last since we fear it may crash. */ |
| 1596 | void logModulesInfo(void) { |
| 1597 | serverLogRaw(LL_WARNING|LL_RAW, "\n------ MODULES INFO OUTPUT ------\n"); |
| 1598 | sds infostring = modulesCollectInfo(sdsempty(), NULL, 1, 0); |
| 1599 | serverLogRaw(LL_WARNING|LL_RAW, infostring); |
| 1600 | sdsfree(infostring); |
| 1601 | } |
| 1602 | |
| 1603 | /* Log information about the "current" client, that is, the client that is |
| 1604 | * currently being served by Redis. May be NULL if Redis is not serving a |
no test coverage detected