Browse Source

Decrease verbosity of missing client warning in receiver, adding id number to the output

master
Con Kolivas 10 years ago
parent
commit
d0f7ec7c35
  1. 2
      src/connector.c

2
src/connector.c

@ -503,7 +503,7 @@ void *receiver(void *arg)
}
client = ref_client_by_id(cdata, event.data.u64);
if (unlikely(!client)) {
LOGWARNING("Failed to find client by id in receiver!");
LOGNOTICE("Failed to find client by id %"PRId64" in receiver!", event.data.u64);
continue;
}
/* We can have both messages and read hang ups so process the

Loading…
Cancel
Save