Browse Source

Remove some spammy debug output

If there are permission errors (e.g. root owns the shared memory), this would spam the log with hundreds of messages/s. isCurrentOwner still warns a couple of times if we fail to lock, so this message isn't necessary
pull/1800/head
tux3 10 years ago
parent
commit
510b8d7d51
No known key found for this signature in database
GPG Key ID: 7E086DD661263264
  1. 4
      src/ipc.cpp

4
src/ipc.cpp

@ -174,10 +174,6 @@ bool IPC::isEventAccepted(time_t time)
} }
globalMemory.unlock(); globalMemory.unlock();
} }
else
{
qWarning() << "isEventAccepted failed to lock, returning false";
}
return result; return result;
} }

Loading…
Cancel
Save