summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Hector Martin2009-10-12 04:48:41 +0200
committerGravatar Hector Martin2009-10-12 04:48:41 +0200
commit5e63dd04443bd62af46caff8f50b71280256f1ae (patch)
tree6f5928ffd3a396e85a22176114948b0a4ba2cbd4
parente855c861acde634662957131bbfb367260f8daf0 (diff)
downloadusbmuxd-5e63dd04443bd62af46caff8f50b71280256f1ae.tar.gz
usbmuxd-5e63dd04443bd62af46caff8f50b71280256f1ae.tar.bz2
Downgrade unknown client fd message loglevel
It can happen sometimes when the phone and the client close at the same time (during the same mainloop iteration) and the like, it's not important when it shows up during connection teardown.
-rw-r--r--daemon/client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/daemon/client.c b/daemon/client.c
index 3481b16..37f5ed6 100644
--- a/daemon/client.c
+++ b/daemon/client.c
@@ -379,7 +379,7 @@ void client_process(int fd, short events)
} ENDFOREACH
if(!client) {
- usbmuxd_log(LL_ERROR, "client_process: fd %d not found in client list", fd);
+ usbmuxd_log(LL_INFO, "client_process: fd %d not found in client list", fd);
return;
}