From 9ac23dcbd08412bef06138dc8b72cc60e6deda20 Mon Sep 17 00:00:00 2001 From: ejurgensen Date: Mon, 6 Jan 2014 23:48:00 +0100 Subject: [PATCH 1/3] Downgrade "No CSeq in reply" log message level --- src/raop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/raop.c b/src/raop.c index cf08c41f..9e6b62d9 100644 --- a/src/raop.c +++ b/src/raop.c @@ -1191,7 +1191,7 @@ raop_check_cseq(struct raop_session *rs, struct evrtsp_request *req) /* AirFoil won't return cseq, so skip the check */ if (reply_cseq < 0) { - DPRINTF(E_LOG, L_RAOP, "No CSeq in reply, skipping check\n"); + DPRINTF(E_INFO, L_RAOP, "No CSeq in reply, skipping check\n"); return 0; } From b4e1e380e6537ece26cf9e07dd216eb03126fedd Mon Sep 17 00:00:00 2001 From: ejurgensen Date: Tue, 7 Jan 2014 00:06:46 +0100 Subject: [PATCH 2/3] Up the level of the Remote discovery pairing log message --- src/remote_pairing.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/remote_pairing.c b/src/remote_pairing.c index 4e82c49c..85b3b7b9 100644 --- a/src/remote_pairing.c +++ b/src/remote_pairing.c @@ -748,7 +748,7 @@ touch_remote_cb(const char *name, const char *type, const char *domain, const ch return; } - DPRINTF(E_DBG, L_REMOTE, "Discovered remote %s (id %s) at [%s]:%d, paircode %s\n", devname, name, address, port, paircode); + DPRINTF(E_LOG, L_REMOTE, "Discovered remote %s (id %s) at %s:%d, paircode %s\n", devname, name, address, port, paircode); /* Add the data to the list, adding the remote to the list if needed */ pthread_mutex_lock(&remote_lck); From 47c61454b6122d151959bcf1e59b9396c28107ec Mon Sep 17 00:00:00 2001 From: ejurgensen Date: Thu, 9 Jan 2014 23:01:21 +0100 Subject: [PATCH 3/3] Minor log message change --- src/remote_pairing.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/remote_pairing.c b/src/remote_pairing.c index 85b3b7b9..96cc1457 100644 --- a/src/remote_pairing.c +++ b/src/remote_pairing.c @@ -748,7 +748,7 @@ touch_remote_cb(const char *name, const char *type, const char *domain, const ch return; } - DPRINTF(E_LOG, L_REMOTE, "Discovered remote %s (id %s) at %s:%d, paircode %s\n", devname, name, address, port, paircode); + DPRINTF(E_LOG, L_REMOTE, "Discovered remote '%s' (id %s) at %s:%d, paircode %s\n", devname, name, address, port, paircode); /* Add the data to the list, adding the remote to the list if needed */ pthread_mutex_lock(&remote_lck);