diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-03-21 11:17:05 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-03-21 11:17:05 +0000 |
commit | 995969b1907ee2d55c31ec9a40c39d5518e0ed87 (patch) | |
tree | d6524dbd9da92fab6aa3c6ff9ad28e39c47ed9b7 /src/wallet | |
parent | Merge pull request #1902 (diff) | |
download | monero-995969b1907ee2d55c31ec9a40c39d5518e0ed87.tar.xz |
wallet: fix set_log not handling 0,xxx style settings
Diffstat (limited to 'src/wallet')
-rw-r--r-- | src/wallet/api/wallet_manager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/api/wallet_manager.cpp b/src/wallet/api/wallet_manager.cpp index ea2a66275..8e86c87b3 100644 --- a/src/wallet/api/wallet_manager.cpp +++ b/src/wallet/api/wallet_manager.cpp @@ -494,7 +494,7 @@ void WalletManagerFactory::setLogLevel(int level) void WalletManagerFactory::setLogCategories(const std::string &categories) { - mlog_set_categories(categories.c_str()); + mlog_set_log(categories.c_str()); } |