aboutsummaryrefslogtreecommitdiff
path: root/logging.c
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.c
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.c')
-rw-r--r--logging.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/logging.c b/logging.c
index aadfe50..3434bcd 100644
--- a/logging.c
+++ b/logging.c
@@ -18,9 +18,9 @@
#define DEF RESET
#ifdef DEBUG_BUILD
-static log_priority lower_prio = LP_DEBUG;
+log_priority lower_prio = LP_DEBUG;
#else
-static log_priority lower_prio = NOTICE;
+log_priority lower_prio = NOTICE;
#endif
void log_fmt_colored(log_priority prio, const char * fmt, ...)