We decided (in #254) to change all log entries containing "Redis" to use this style:
serverLog(LL_NOTICE, "%s forked for debugging eval", SERVER_TITLE);
also serverPanic is logging, so we use %s for this too:
serverPanic("Unrecoverable error creating %s Cluster socket accept handler.", SERVER_TITLE);
We shall define SERVER_TITLE to "Valkey" in server.h. (It's different to SERVER_NAME which is "valkey" with lowercase "v".)
Skip the "=== REDIS BUG REPORT". We'll handle that in a separate PR for #274.
We decided (in #254) to change all log entries containing "Redis" to use this style:
also serverPanic is logging, so we use %s for this too:
We shall define SERVER_TITLE to "Valkey" in server.h. (It's different to SERVER_NAME which is "valkey" with lowercase "v".)
Skip the "=== REDIS BUG REPORT". We'll handle that in a separate PR for #274.