diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-09-22 17:54:58 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-09-22 18:08:14 +0100 |
commit | 792ba4f0fe88cb29e28d3bede2eacafce154bb64 (patch) | |
tree | 97bf6d4a5932dd431e29432c8aa7df561d712416 /src/daemon/rpc_command_executor.cpp | |
parent | easylogging++: add categories getter (diff) | |
download | monero-792ba4f0fe88cb29e28d3bede2eacafce154bb64.tar.xz |
Log categories can now be added to and removed from
Also, set_log without parameters now prints the log categories
Diffstat (limited to 'src/daemon/rpc_command_executor.cpp')
-rw-r--r-- | src/daemon/rpc_command_executor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/daemon/rpc_command_executor.cpp b/src/daemon/rpc_command_executor.cpp index 167e24ed3..a55e96796 100644 --- a/src/daemon/rpc_command_executor.cpp +++ b/src/daemon/rpc_command_executor.cpp @@ -599,7 +599,7 @@ bool t_rpc_command_executor::set_log_categories(const std::string &categories) { } } - tools::success_msg_writer() << "Log categories are now " << categories; + tools::success_msg_writer() << "Log categories are now " << res.categories; return true; } |