Closed mkind closed 8 years ago
the LOG_VERBOSE
macro isn't correct
#define LOG_VERBOSE(level, ...) \
do { \
if (level >= verbose_level) { \
LOG(__VA_ARGS__); \
} \
} while (0)
correct would be (i think):
#define LOG_VERBOSE(level, ...) \
do { \
if (verbose_level >= level) { \
LOG(__VA_ARGS__); \
} \
} while (0)
Yes. Is already fixed. Will be upstream someday.
As soon as
sb
is started with-vv
option there is no morenew client connection: host = 127.0.0.1, port = 6060
output if a client connects.