From ea231e16b65db6917168951aeba85e597d2281ab Mon Sep 17 00:00:00 2001 From: Diego Waxemberg Date: Tue, 24 Feb 2015 00:03:02 -0500 Subject: [PATCH] changed log level for connection errors --- Limelight/Network/HttpManager.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Limelight/Network/HttpManager.m b/Limelight/Network/HttpManager.m index 72fda2c1..69231260 100644 --- a/Limelight/Network/HttpManager.m +++ b/Limelight/Network/HttpManager.m @@ -216,7 +216,7 @@ static const NSString* PORT = @"47984"; } - (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error { - Log(LOG_W, @"connection error: %@", error); + Log(LOG_D, @"connection error: %@", error); dispatch_semaphore_signal(_requestLock); }