From 8a67c43154fcdecd9d1b76f5f3c07b4c1ebda6c1 Mon Sep 17 00:00:00 2001 From: Thulinma Date: Thu, 8 Oct 2020 12:51:14 +0200 Subject: [PATCH] Removed forgotten debug message --- lib/shared_memory.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/shared_memory.cpp b/lib/shared_memory.cpp index 03fb37d8..dccdb092 100644 --- a/lib/shared_memory.cpp +++ b/lib/shared_memory.cpp @@ -175,9 +175,8 @@ namespace IPC { --isLocked; if (!isLocked){ uint64_t micros = Util::getMicros(lockTime); - if (micros > 500){ + if (micros > 10000){ INFO_MSG("Semaphore %s was locked for %.3f ms", myName.c_str(), (double)micros/1000.0); - BACKTRACE; } } }