diff options
-rw-r--r-- | contrib/epee/include/console_handler.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/contrib/epee/include/console_handler.h b/contrib/epee/include/console_handler.h index 952fc3c96..8fe73ef40 100644 --- a/contrib/epee/include/console_handler.h +++ b/contrib/epee/include/console_handler.h @@ -274,14 +274,15 @@ namespace epee } std::string command; - if(!m_stdin_reader.get_line(command)) - { - LOG_PRINT("Failed to read line.", LOG_LEVEL_0); - } + bool get_line_ret = m_stdin_reader.get_line(command); if (m_stdin_reader.eos()) { break; } + if (!get_line_ret) + { + LOG_PRINT("Failed to read line.", LOG_LEVEL_0); + } string_tools::trim(command); LOG_PRINT_L2("Read command: " << command); |