mirror of
https://github.com/aljazceru/lightning.git
synced 2025-12-23 17:14:22 +01:00
Logging code based heavily on pettycoin's. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
12 lines
303 B
C
12 lines
303 B
C
#ifndef LIGHTNING_DAEMON_LIGHTNING_H
|
|
#define LIGHTNING_DAEMON_LIGHTNING_H
|
|
#include "config.h"
|
|
|
|
/* Here's where the global variables hide! */
|
|
struct lightningd_state {
|
|
/* Where all our logging goes. */
|
|
struct log_record *log_record;
|
|
struct log *base_log;
|
|
};
|
|
#endif /* LIGHTNING_DAEMON_LIGHTNING_H */
|