diff options
author | Riccardo Spagni <ric@spagni.net> | 2017-03-21 14:09:42 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2017-03-21 14:09:42 +0200 |
commit | 70e71a18450aa8e69971ad29793b0b409ffcef22 (patch) | |
tree | 76df97f69de09855528cc7f06c7f5ba984883622 /src/wallet | |
parent | Merge pull request #1903 (diff) | |
parent | wallet: fix set_log not handling 0,xxx style settings (diff) | |
download | monero-70e71a18450aa8e69971ad29793b0b409ffcef22.tar.xz |
Merge pull request #1904
995969b1 wallet: fix set_log not handling 0,xxx style settings (moneromooo-monero)
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()); } |