posix: remove frequent log in verbose mode

debug log with no additional informational benefit spams
output in verbose mode, therefore remove

Change-Id: Ifee01914a82a132a837e5e2caf6b7259700bda57
Signed-off-by: Adam Miartus <external.Adam.Miartus@de.bosch.com>
(cherry picked from commit 0b307cfca2cd072f6427b383fc7ea821fc46763a)
Signed-off-by: Timo Wischer <twischer@de.adit-jv.com>
This commit is contained in:
Adam Miartus 2020-02-13 13:02:05 +01:00 committed by Filipe Coelho
parent 8fc734acb8
commit 259a5ebc91
1 changed files with 0 additions and 1 deletions

View File

@ -229,7 +229,6 @@ bool JackSocketServerChannel::Execute()
// Poll all clients
for (unsigned int i = 1; i < fSocketTable.size() + 1; i++) {
int fd = fPollTable[i].fd;
jack_log("JackSocketServerChannel::Execute : fPollTable i = %ld fd = %ld", i, fd);
if (fPollTable[i].revents & ~POLLIN) {
jack_log("JackSocketServerChannel::Execute : poll client error err = %s", strerror(errno));
ClientKill(fd);