Increase severity on Stoppable logging

This commit is contained in:
Vinnie Falco
2016-02-09 14:48:58 -05:00
parent 06beddcee6
commit a5131515ec

View File

@@ -140,7 +140,7 @@ void Stoppable::stopRecursive (Journal j)
bool const timedOut (! m_stoppedEvent.wait (1 * 1000)); // milliseconds
if (timedOut)
{
j.warning << "Waiting for '" << m_name << "' to stop";
j.error << "Waiting for '" << m_name << "' to stop";
m_stoppedEvent.wait ();
}