diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2020-06-08 01:20:31 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2020-06-08 01:20:31 +0200 |
commit | 6c10fd5e3e563791008a22803a536e7436fee073 (patch) | |
tree | 15515ede47c465a29facb2d4be34ebee23ea2711 /logging.c | |
parent | 2d8bfaab51c2dd42d73c348e238802912e870b22 (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.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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, ...) |