aboutsummaryrefslogtreecommitdiff
path: root/logging.h
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2020-06-08 01:20:31 +0200
committerToni Uhlig <matzeton@googlemail.com>2020-06-08 01:20:31 +0200
commit6c10fd5e3e563791008a22803a536e7436fee073 (patch)
tree15515ede47c465a29facb2d4be34ebee23ea2711 /logging.h
parent2d8bfaab51c2dd42d73c348e238802912e870b22 (diff)
log_bin2hex_sodium cares about logging prio set, fixed missing cleanup on bufferevent failure
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'logging.h')
-rw-r--r--logging.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/logging.h b/logging.h
index b9174bf..601e5a9 100644
--- a/logging.h
+++ b/logging.h
@@ -5,6 +5,8 @@
typedef enum log_priority { LP_DEBUG = 0, NOTICE, WARNING, ERROR, EVENT, PROTO } log_priority;
+extern log_priority lower_prio;
+
void log_fmt_colored(log_priority prio, const char * fmt, ...);
#endif