From 379380abd8e8d884b707d8ab0287935b18d74d66 Mon Sep 17 00:00:00 2001 From: Daniel Patterson Date: Tue, 14 Mar 2017 09:39:04 -0700 Subject: [PATCH] These don't need to be warning messages, debug is sufficient. --- include/storage/shared_memory.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/storage/shared_memory.hpp b/include/storage/shared_memory.hpp index dd21cd2b6..ea5f95470 100644 --- a/include/storage/shared_memory.hpp +++ b/include/storage/shared_memory.hpp @@ -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,8 +245,8 @@ 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 " - "dettach. Going to sleep for 50ms."; + 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)); }