Merge pull request #1589

87c658f8 wallet2_api: add API to set log categories (moneromooo-monero)
This commit is contained in:
Riccardo Spagni 2017-01-20 20:58:39 -05:00
commit d5fbba45e8
No known key found for this signature in database
GPG key ID: 55432DF31CCD4FCD
2 changed files with 6 additions and 0 deletions

View file

@ -448,6 +448,11 @@ void WalletManagerFactory::setLogLevel(int level)
mlog_set_log_level(level);
}
void WalletManagerFactory::setLogCategories(const std::string &categories)
{
mlog_set_categories(categories.c_str());
}
}

View file

@ -708,6 +708,7 @@ struct WalletManagerFactory
static WalletManager * getWalletManager();
static void setLogLevel(int level);
static void setLogCategories(const std::string &categories);
};