mirror of
https://github.com/monero-project/monero.git
synced 2025-12-12 17:43:12 -05:00
Log categories can now be added to and removed from
Also, set_log without parameters now prints the log categories
This commit is contained in:
parent
48f92eb665
commit
792ba4f0fe
8 changed files with 57 additions and 8 deletions
|
|
@ -125,12 +125,17 @@ bool t_command_parser_executor::print_blockchain_info(const std::vector<std::str
|
|||
|
||||
bool t_command_parser_executor::set_log_level(const std::vector<std::string>& args)
|
||||
{
|
||||
if(args.size() != 1)
|
||||
if(args.size() > 1)
|
||||
{
|
||||
std::cout << "use: set_log [<log_level_number_0-4> | <categories>]" << std::endl;
|
||||
return true;
|
||||
}
|
||||
|
||||
if (args.empty())
|
||||
{
|
||||
return m_executor.set_log_categories("+");
|
||||
}
|
||||
|
||||
uint16_t l = 0;
|
||||
if(epee::string_tools::get_xtype_from_string(l, args[0]))
|
||||
{
|
||||
|
|
|
|||
|
|
@ -141,7 +141,7 @@ t_command_server::t_command_server(
|
|||
m_command_lookup.set_handler(
|
||||
"set_log"
|
||||
, std::bind(&t_command_parser_executor::set_log_level, &m_parser, p::_1)
|
||||
, "set_log <level>|<categories> - Change current loglevel, <level> is a number 0-4"
|
||||
, "set_log <level>|<{+,-,}categories> - Change current log level/categories, <level> is a number 0-4"
|
||||
);
|
||||
m_command_lookup.set_handler(
|
||||
"diff"
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue