From a5131515ecf1a5ff8044f5848013a3caf9335c31 Mon Sep 17 00:00:00 2001 From: Vinnie Falco Date: Tue, 9 Feb 2016 14:48:58 -0500 Subject: [PATCH] Increase severity on Stoppable logging --- beast/threads/impl/Stoppable.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beast/threads/impl/Stoppable.cpp b/beast/threads/impl/Stoppable.cpp index 94f633b7f..dbbfdbdec 100644 --- a/beast/threads/impl/Stoppable.cpp +++ b/beast/threads/impl/Stoppable.cpp @@ -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 (); }