aboutsummaryrefslogtreecommitdiff
path: root/src/wallet
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2017-03-21 11:17:05 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2017-03-21 11:17:05 +0000
commit995969b1907ee2d55c31ec9a40c39d5518e0ed87 (patch)
treed6524dbd9da92fab6aa3c6ff9ad28e39c47ed9b7 /src/wallet
parentMerge pull request #1902 (diff)
downloadmonero-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.cpp2
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());
}