You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.3 KiB
53 lines
1.3 KiB
#ifndef LIGHTNING_COMMON_STATUS_LEVELS_H
|
|
#define LIGHTNING_COMMON_STATUS_LEVELS_H
|
|
#include "config.h"
|
|
|
|
enum log_level {
|
|
/* Logging all IO. */
|
|
LOG_IO_OUT,
|
|
LOG_IO_IN,
|
|
/* Gory details which are mainly good for debugging. */
|
|
LOG_DBG,
|
|
/* Information about what's going in. */
|
|
LOG_INFORM,
|
|
/* That's strange... */
|
|
LOG_UNUSUAL,
|
|
/* That's really bad, we're broken. */
|
|
LOG_BROKEN
|
|
};
|
|
|
|
/* Special status code for tracing messages (subtract log_level). */
|
|
#define STATUS_LOG_MIN (STATUS_LOG_MAX - LOG_BROKEN)
|
|
#define STATUS_LOG_MAX (0x7FFF)
|
|
|
|
/* Failure codes always have high bit set. */
|
|
#define STATUS_FAIL 0x8000
|
|
|
|
/* These are always followed by an ASCII string. */
|
|
enum status_fail {
|
|
/*
|
|
* These errors shouldn't happen:
|
|
*/
|
|
/* Master daemon sent unknown/malformed command, or fd failed */
|
|
STATUS_FAIL_MASTER_IO = STATUS_FAIL,
|
|
|
|
/* Hsmd sent unknown/malformed command, or fd failed */
|
|
STATUS_FAIL_HSM_IO,
|
|
|
|
/* Gossipd sent unknown/malformed command, or fd failed */
|
|
STATUS_FAIL_GOSSIP_IO,
|
|
|
|
/* Other internal error. */
|
|
STATUS_FAIL_INTERNAL_ERROR,
|
|
|
|
/*
|
|
* These errors happen when the other peer misbehaves:
|
|
*/
|
|
/* I/O failure (probably they closed the socket) */
|
|
STATUS_FAIL_PEER_IO,
|
|
|
|
/* Peer did something else wrong */
|
|
STATUS_FAIL_PEER_BAD
|
|
};
|
|
|
|
#endif /* LIGHTNING_COMMON_STATUS_LEVELS_H */
|
|
|