From 924b6b663ec6d5f2e651d395ee83220470b4e89c 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 --- src/beast/beast/threads/impl/Stoppable.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/beast/beast/threads/impl/Stoppable.cpp b/src/beast/beast/threads/impl/Stoppable.cpp index 94f633b7f..dbbfdbdec 100644 --- a/src/beast/beast/threads/impl/Stoppable.cpp +++ b/src/beast/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 (); }