diff options
author | rfree2monero <rfreemonero@op.pl> | 2015-04-10 16:13:57 +0200 |
---|---|---|
committer | rfree2 <rfree@op.pl> | 2015-04-10 16:54:21 +0200 |
commit | 32c19c6c3d677564d217ba31c16fdfc84b4faf80 (patch) | |
tree | 04ff7dcf43840494a356485a9f377aab14212e56 /src/daemon/rpc_command_executor.cpp | |
parent | Merge pull request #259 (diff) | |
download | monero-32c19c6c3d677564d217ba31c16fdfc84b4faf80.tar.xz |
[fix] log level change. compilation: dns, tests
old unbound #warning does not block compilation
unit tests build fine. Even though the RPC/P2P network type is required again
Diffstat (limited to 'src/daemon/rpc_command_executor.cpp')
-rw-r--r-- | src/daemon/rpc_command_executor.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/daemon/rpc_command_executor.cpp b/src/daemon/rpc_command_executor.cpp index a7c9d2365..5d73c7e8c 100644 --- a/src/daemon/rpc_command_executor.cpp +++ b/src/daemon/rpc_command_executor.cpp @@ -35,6 +35,7 @@ #include "cryptonote_core/cryptonote_core.h" #include <boost/format.hpp> #include <ctime> +#include <string> namespace daemonize { @@ -374,7 +375,7 @@ bool t_rpc_command_executor::set_log_level(int8_t level) { } } - tools::success_msg_writer() << "Log level is now " << boost::lexical_cast<std::string>(level); + tools::success_msg_writer() << "Log level is now " << std::to_string(level); return true; } |