1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

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
This commit is contained in:
tux3 2015-06-05 12:49:03 +02:00
parent 192d9a5e29
commit 510b8d7d51
No known key found for this signature in database
GPG Key ID: 7E086DD661263264

View File

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