aboutsummaryrefslogtreecommitdiff
path: root/contrib/epee/include/console_handler.h
diff options
context:
space:
mode:
authormydesktop <dev.mc2@gmail.com>2014-05-28 21:13:32 -0400
committermydesktop <dev.mc2@gmail.com>2014-05-28 21:13:32 -0400
commit5c1b7c72249a114b1c30945fc8a9116c07573a48 (patch)
tree5e110e349a1f4dccd33867fecbbc4a2c51fc312d /contrib/epee/include/console_handler.h
parentraise min fee and correct COIN value (diff)
parenttypo in tx_pool.cpp (diff)
downloadmonero-5c1b7c72249a114b1c30945fc8a9116c07573a48.tar.xz
Merge branch '0.8.8update'
Update to newest version 0.8.8. See change log for details.
Diffstat (limited to 'contrib/epee/include/console_handler.h')
-rw-r--r--contrib/epee/include/console_handler.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/contrib/epee/include/console_handler.h b/contrib/epee/include/console_handler.h
index 5798d2def..fcab35aaa 100644
--- a/contrib/epee/include/console_handler.h
+++ b/contrib/epee/include/console_handler.h
@@ -267,23 +267,6 @@ namespace epee
if(0 == command.compare("exit") || 0 == command.compare("q"))
{
continue_handle = false;
- }else if (!command.compare(0, 7, "set_log"))
- {
- //parse set_log command
- if(command.size() != 9)
- {
- std::cout << "wrong syntax: " << command << std::endl << "use set_log n" << std::endl;
- continue;
- }
- uint16_t n = 0;
- if(!string_tools::get_xtype_from_string(n, command.substr(8, 1)))
- {
- std::cout << "wrong syntax: " << command << std::endl << "use set_log n" << std::endl;
- continue;
- }
- log_space::get_set_log_detalisation_level(true, n);
- std::cout << "New log level set " << n;
- LOG_PRINT_L2("New log level set " << n);
}else if (command.empty())
{
continue;