Change log level for some common debug messages from "info" to "debug"

This commit is contained in:
practicalswift
2018-01-15 23:47:25 +01:00
committed by Rusty Russell
parent 145e26371d
commit e91a8dff12
2 changed files with 5 additions and 5 deletions

View File

@@ -652,7 +652,7 @@ static struct io_plan *jcon_connected(struct io_conn *conn,
static struct io_plan *incoming_jcon_connected(struct io_conn *conn,
struct lightningd *ld)
{
log_info(ld->log, "Connected json input");
log_debug(ld->log, "Connected json input");
/* Lifetime of JSON conn is limited to fd connect time. */
return jcon_connected(notleak(conn), ld);