mirror of
https://github.com/monero-project/monero.git
synced 2026-01-10 04:05:24 -08:00
[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
This commit is contained in:
@@ -232,7 +232,7 @@ int main(int argc, char const * argv[])
|
||||
else if (epee::log_space::get_set_log_detalisation_level(false) != new_log_level)
|
||||
{
|
||||
epee::log_space::get_set_log_detalisation_level(true, new_log_level);
|
||||
int otshell_utils_log_level = 100 - (new_log_level * 25);
|
||||
int otshell_utils_log_level = 100 - (new_log_level * 20);
|
||||
gCurrentLogger.setDebugLevel(otshell_utils_log_level);
|
||||
LOG_PRINT_L0("LOG_LEVEL set to " << new_log_level);
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user