Browse Source

jsonrpc: reduce debug log spam for JSON commands.

Just log the failed ones, not every connection and successful commands.

Before (VALGRIND=0 -n10):
111 passed, 1 skipped in 175.78 seconds

After:
111 passed, 1 skipped in 173.92 seconds
111 passed, 1 skipped in 164.16 seconds
111 passed, 1 skipped in 171.30 seconds
111 passed, 1 skipped in 180.05 seconds
111 passed, 1 skipped in 180.04 seconds


Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
ppa-0.6.1
Rusty Russell 7 years ago
committed by Christian Decker
parent
commit
ef33dd2998
  1. 20
      lightningd/jsonrpc.c
  2. 2
      lightningd/jsonrpc.h

20
lightningd/jsonrpc.c

@ -360,7 +360,6 @@ void command_success(struct command *cmd, struct json_result *result)
} }
assert(cmd_in_jcon(jcon, cmd)); assert(cmd_in_jcon(jcon, cmd));
connection_complete_ok(jcon, cmd, cmd->id, result); connection_complete_ok(jcon, cmd, cmd->id, result);
log_debug(jcon->log, "Success");
} }
static void command_fail_v(struct command *cmd, static void command_fail_v(struct command *cmd,
@ -373,14 +372,18 @@ static void command_fail_v(struct command *cmd,
if (!jcon) { if (!jcon) {
log_debug(cmd->ld->log, log_debug(cmd->ld->log,
"Command failed after jcon close"); "%s: Command failed after jcon close",
cmd->json_cmd->name);
tal_free(cmd); tal_free(cmd);
return; return;
} }
error = tal_vfmt(cmd, fmt, ap); error = tal_vfmt(cmd, fmt, ap);
log_debug(jcon->log, "Failing: %s", error); /* cmd->json_cmd can be NULL, if we're failing for command not found! */
log_debug(jcon->log, "Failing %s: %s",
cmd->json_cmd ? cmd->json_cmd->name : "invalid cmd",
error);
assert(cmd_in_jcon(jcon, cmd)); assert(cmd_in_jcon(jcon, cmd));
connection_complete_error(jcon, cmd, cmd->id, error, code, data); connection_complete_error(jcon, cmd, cmd->id, error, code, data);
@ -422,7 +425,6 @@ static void json_command_malformed(struct json_connection *jcon,
static void parse_request(struct json_connection *jcon, const jsmntok_t tok[]) static void parse_request(struct json_connection *jcon, const jsmntok_t tok[])
{ {
const jsmntok_t *method, *id, *params; const jsmntok_t *method, *id, *params;
const struct json_command *cmd;
struct command *c; struct command *c;
if (tok[0].type != JSMN_OBJECT) { if (tok[0].type != JSMN_OBJECT) {
@ -469,15 +471,15 @@ static void parse_request(struct json_connection *jcon, const jsmntok_t tok[])
return; return;
} }
cmd = find_cmd(jcon->buffer, method); c->json_cmd = find_cmd(jcon->buffer, method);
if (!cmd) { if (!c->json_cmd) {
command_fail(c, JSONRPC2_METHOD_NOT_FOUND, command_fail(c, JSONRPC2_METHOD_NOT_FOUND,
"Unknown command '%.*s'", "Unknown command '%.*s'",
method->end - method->start, method->end - method->start,
jcon->buffer + method->start); jcon->buffer + method->start);
return; return;
} }
if (cmd->deprecated && !deprecated_apis) { if (c->json_cmd->deprecated && !deprecated_apis) {
command_fail(c, JSONRPC2_METHOD_NOT_FOUND, command_fail(c, JSONRPC2_METHOD_NOT_FOUND,
"Command '%.*s' is deprecated", "Command '%.*s' is deprecated",
method->end - method->start, method->end - method->start,
@ -486,7 +488,7 @@ static void parse_request(struct json_connection *jcon, const jsmntok_t tok[])
} }
db_begin_transaction(jcon->ld->wallet->db); db_begin_transaction(jcon->ld->wallet->db);
cmd->dispatch(c, jcon->buffer, params); c->json_cmd->dispatch(c, jcon->buffer, params);
db_commit_transaction(jcon->ld->wallet->db); db_commit_transaction(jcon->ld->wallet->db);
/* If they didn't complete it, they must call command_still_pending */ /* If they didn't complete it, they must call command_still_pending */
@ -603,8 +605,6 @@ static struct io_plan *jcon_connected(struct io_conn *conn,
static struct io_plan *incoming_jcon_connected(struct io_conn *conn, static struct io_plan *incoming_jcon_connected(struct io_conn *conn,
struct lightningd *ld) struct lightningd *ld)
{ {
log_debug(ld->log, "Connected json input");
/* Lifetime of JSON conn is limited to fd connect time. */ /* Lifetime of JSON conn is limited to fd connect time. */
return jcon_connected(notleak(conn), ld); return jcon_connected(notleak(conn), ld);
} }

2
lightningd/jsonrpc.h

@ -19,6 +19,8 @@ struct command {
struct lightningd *ld; struct lightningd *ld;
/* The 'id' which we need to include in the response. */ /* The 'id' which we need to include in the response. */
const char *id; const char *id;
/* What command we're running (for logging) */
const struct json_command *json_cmd;
/* The connection, or NULL if it closed. */ /* The connection, or NULL if it closed. */
struct json_connection *jcon; struct json_connection *jcon;
/* Have we been marked by command_still_pending? For debugging... */ /* Have we been marked by command_still_pending? For debugging... */

Loading…
Cancel
Save