mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-11 05:33:28 +01:00
wallet2_api: add API to set log categories
This commit is contained in:
parent
71ac698b78
commit
87c658f83b
@ -448,6 +448,11 @@ void WalletManagerFactory::setLogLevel(int level)
|
|||||||
mlog_set_log_level(level);
|
mlog_set_log_level(level);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void WalletManagerFactory::setLogCategories(const std::string &categories)
|
||||||
|
{
|
||||||
|
mlog_set_categories(categories.c_str());
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -708,6 +708,7 @@ struct WalletManagerFactory
|
|||||||
|
|
||||||
static WalletManager * getWalletManager();
|
static WalletManager * getWalletManager();
|
||||||
static void setLogLevel(int level);
|
static void setLogLevel(int level);
|
||||||
|
static void setLogCategories(const std::string &categories);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user