mlog: fix default level/category mapping

It was not matching the LOG_PRINT_Lx mapping for 2/3/4
This commit is contained in:
moneromooo-monero 2017-01-22 15:20:55 +00:00
parent 71ac698b78
commit 13dd102e94
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3

View file

@ -125,10 +125,10 @@ void mlog_set_log_level(int level)
settings = "*:WARNING,global:INFO";
break;
case 2:
settings = "*:INFO";
settings = "*:DEBUG";
break;
case 3:
settings = "*:DEBUG";
settings = "*:TRACE";
break;
case 4:
settings = "*:TRACE";