These don't need to be warning messages, debug is sufficient.

This commit is contained in:
Daniel Patterson 2017-03-14 09:39:04 -07:00 committed by Patrick Niklaus
parent 497709da13
commit 379380abd8

View File

@ -151,7 +151,7 @@ class SharedMemory
#else
void WaitForDetach()
{
util::Log(logWARNING)
util::Log(logDEBUG)
<< "Shared memory support for non-Linux systems does not wait for clients to "
"dettach. Going to sleep for 50ms.";
std::this_thread::sleep_for(std::chrono::milliseconds(50));
@ -245,7 +245,7 @@ class SharedMemory
void WaitForDetach()
{
// FIXME this needs an implementation for Windows
util::Log(logWARNING) << "Shared memory support for Windows does not wait for clients to "
util::Log(logDEBUG) << "Shared memory support for Windows does not wait for clients to "
"dettach. Going to sleep for 50ms.";
std::this_thread::sleep_for(std::chrono::milliseconds(50));
}