Fixed setting max log level from command line
This commit is contained in:
@@ -107,7 +107,7 @@ static int do_status(p2pool *m_pool, const char * /* args */)
|
||||
static int do_loglevel(p2pool * /* m_pool */, const char *args)
|
||||
{
|
||||
int level = atoi(args);
|
||||
level = std::min(std::max(level, 0), 6);
|
||||
level = std::min(std::max(level, 0), log::MAX_GLOBAL_LOG_LEVEL);
|
||||
log::GLOBAL_LOG_LEVEL = level;
|
||||
LOGINFO(0, "log level set to " << level);
|
||||
return 0;
|
||||
|
||||
Reference in New Issue
Block a user