These don't need to be warning messages, debug is sufficient.
This commit is contained in:
parent
497709da13
commit
379380abd8
@ -151,7 +151,7 @@ class SharedMemory
|
|||||||
#else
|
#else
|
||||||
void WaitForDetach()
|
void WaitForDetach()
|
||||||
{
|
{
|
||||||
util::Log(logWARNING)
|
util::Log(logDEBUG)
|
||||||
<< "Shared memory support for non-Linux systems does not wait for clients to "
|
<< "Shared memory support for non-Linux systems does not wait for clients to "
|
||||||
"dettach. Going to sleep for 50ms.";
|
"dettach. Going to sleep for 50ms.";
|
||||||
std::this_thread::sleep_for(std::chrono::milliseconds(50));
|
std::this_thread::sleep_for(std::chrono::milliseconds(50));
|
||||||
@ -245,7 +245,7 @@ class SharedMemory
|
|||||||
void WaitForDetach()
|
void WaitForDetach()
|
||||||
{
|
{
|
||||||
// FIXME this needs an implementation for Windows
|
// 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.";
|
"dettach. Going to sleep for 50ms.";
|
||||||
std::this_thread::sleep_for(std::chrono::milliseconds(50));
|
std::this_thread::sleep_for(std::chrono::milliseconds(50));
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user