mirror of
https://github.com/monero-project/monero.git
synced 2025-12-21 06:43:12 -08:00
Merge pull request #3345
e0cda74a wallet2_api: add info/error/warning entry points (moneromooo-monero)
This commit is contained in:
@@ -306,8 +306,20 @@ void Wallet::init(const char *argv0, const char *default_log_base_name) {
|
||||
mlog_configure(mlog_get_default_log_path(default_log_base_name), true);
|
||||
}
|
||||
|
||||
void Wallet::debug(const std::string &str) {
|
||||
MDEBUG(str);
|
||||
void Wallet::debug(const std::string &category, const std::string &str) {
|
||||
MCDEBUG(category.empty() ? MONERO_DEFAULT_LOG_CATEGORY : category.c_str(), str);
|
||||
}
|
||||
|
||||
void Wallet::info(const std::string &category, const std::string &str) {
|
||||
MCINFO(category.empty() ? MONERO_DEFAULT_LOG_CATEGORY : category.c_str(), str);
|
||||
}
|
||||
|
||||
void Wallet::warning(const std::string &category, const std::string &str) {
|
||||
MCWARNING(category.empty() ? MONERO_DEFAULT_LOG_CATEGORY : category.c_str(), str);
|
||||
}
|
||||
|
||||
void Wallet::error(const std::string &category, const std::string &str) {
|
||||
MCERROR(category.empty() ? MONERO_DEFAULT_LOG_CATEGORY : category.c_str(), str);
|
||||
}
|
||||
|
||||
///////////////////////// WalletImpl implementation ////////////////////////
|
||||
|
||||
Reference in New Issue
Block a user