diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-03-04 17:04:18 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-03-04 18:07:30 +0000 |
commit | e0cda74ace17a910c50234f8db7e289c86274d6b (patch) | |
tree | 459585898cbaa18045103991805d4481cda2ea91 /src/wallet/api/wallet2_api.h | |
parent | Merge pull request #3245 (diff) | |
download | monero-e0cda74ace17a910c50234f8db7e289c86274d6b.tar.xz |
wallet2_api: add info/error/warning entry points
Diffstat (limited to 'src/wallet/api/wallet2_api.h')
-rw-r--r-- | src/wallet/api/wallet2_api.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/wallet/api/wallet2_api.h b/src/wallet/api/wallet2_api.h index a22788399..fcb44de3e 100644 --- a/src/wallet/api/wallet2_api.h +++ b/src/wallet/api/wallet2_api.h @@ -535,7 +535,10 @@ struct Wallet static uint64_t maximumAllowedAmount(); // Easylogger wrapper static void init(const char *argv0, const char *default_log_base_name); - static void debug(const std::string &str); + static void debug(const std::string &category, const std::string &str); + static void info(const std::string &category, const std::string &str); + static void warning(const std::string &category, const std::string &str); + static void error(const std::string &category, const std::string &str); /** * @brief StartRefresh - Start/resume refresh thread (refresh every 10 seconds) |