Skip to content

Commit

Permalink
Update src/debug.c
Browse files Browse the repository at this point in the history
fix log

Co-authored-by: debing.sun <[email protected]>
  • Loading branch information
naglera and sundb authored Mar 11, 2024
1 parent 7b73c11 commit afb40f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/debug.c
Original file line number Diff line number Diff line change
Expand Up @@ -1931,7 +1931,7 @@ void logCurrentClient(client *cc, const char *title) {
serverLog(LL_WARNING|LL_RAW,"argc: '%d'\n", cc->argc);
for (j = 0; j < cc->argc; j++) {
if (j >= clientArgsToLog(cc)){
serverLog(LL_WARNING|LL_RAW,"client->argv[%d]: *redacted*\n", j);
serverLog(LL_WARNING|LL_RAW,"argv[%d]: *redacted*\n", j);
continue;
}
robj *decoded;
Expand Down

0 comments on commit afb40f0

Please sign in to comment.