Browse Source

Adjust log level for logging disconnected RPC users ("Command failed after jcon close")

This is a follow-up to #1121
ppa-0.6.1
practicalswift 7 years ago
committed by Christian Decker
parent
commit
dbb7ea1e41
  1. 4
      lightningd/jsonrpc.c

4
lightningd/jsonrpc.c

@ -413,8 +413,8 @@ static void command_fail_v(struct command *cmd,
struct json_connection *jcon = cmd->jcon;
if (!jcon) {
log_unusual(cmd->ld->log,
"Command failed after jcon close");
log_debug(cmd->ld->log,
"Command failed after jcon close");
tal_free(cmd);
return;
}

Loading…
Cancel
Save