Browse Source

hsm: give it its own log, so it has unique prefix.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
ppa-0.6.1
Rusty Russell 7 years ago
parent
commit
ad401f3a1c
  1. 1
      lightningd/hsm_control.c
  2. 1
      lightningd/lightningd.h

1
lightningd/hsm_control.c

@ -40,6 +40,7 @@ void hsm_init(struct lightningd *ld, bool newdir)
if (ld->hsm_fd < 0) if (ld->hsm_fd < 0)
err(1, "Could not subd hsm"); err(1, "Could not subd hsm");
ld->hsm_log = new_log(ld, ld->log_book, "hsmd:");
if (newdir) if (newdir)
create = true; create = true;
else else

1
lightningd/lightningd.h

@ -107,6 +107,7 @@ struct lightningd {
/* Bearer of all my secrets. */ /* Bearer of all my secrets. */
int hsm_fd; int hsm_fd;
struct log *hsm_log;
/* Daemon looking after peers during init / before channel. */ /* Daemon looking after peers during init / before channel. */
struct subd *gossip; struct subd *gossip;

Loading…
Cancel
Save