diff options
| author | 2009-10-12 04:48:41 +0200 | |
|---|---|---|
| committer | 2009-10-12 04:48:41 +0200 | |
| commit | 5e63dd04443bd62af46caff8f50b71280256f1ae (patch) | |
| tree | 6f5928ffd3a396e85a22176114948b0a4ba2cbd4 | |
| parent | e855c861acde634662957131bbfb367260f8daf0 (diff) | |
| download | usbmuxd-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.c | 2 | 
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;  	} | 
