console_handler: add a global log when exiting via EOF

It's a common confusion point for users which run monerod
without stdin and with --detach
This commit is contained in:
moneromooo-monero 2018-10-20 09:12:55 +00:00
parent 5638b07d9f
commit fea60d6ab2
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3

View file

@ -352,8 +352,11 @@ eof:
std::string command; std::string command;
bool get_line_ret = m_stdin_reader.get_line(command); bool get_line_ret = m_stdin_reader.get_line(command);
if (!m_running || m_stdin_reader.eos()) if (!m_running)
break;
if (m_stdin_reader.eos())
{ {
MGINFO("EOF on stdin, exiting");
break; break;
} }
if (!get_line_ret) if (!get_line_ret)