Merge pull request #1893

0effe196 Revert "Increase the log level for the info about log levels" (moneromooo-monero)
This commit is contained in:
Riccardo Spagni 2017-03-19 22:59:26 +02:00
commit a85f750ee8
No known key found for this signature in database
GPG key ID: 55432DF31CCD4FCD

View file

@ -142,7 +142,7 @@ void mlog_configure(const std::string &filename_base, bool console)
void mlog_set_categories(const char *categories)
{
el::Loggers::setCategories(categories);
MDEBUG("New log categories: " << categories);
MGINFO("New log categories: " << categories);
}
// maps epee style log level to new logging system
@ -150,7 +150,7 @@ void mlog_set_log_level(int level)
{
const char *categories = get_default_categories(level);
el::Loggers::setCategories(categories);
MDEBUG("New log categories: " << categories);
MGINFO("New log categories: " << categories);
}
void mlog_set_log(const char *log)