From 1f3b207c88b347915f6b4e5bb6476cea9c34c804 Mon Sep 17 00:00:00 2001 From: Alex Zolotarev Date: Thu, 27 Oct 2011 11:25:07 +0300 Subject: [PATCH] Changed logging type to LDEBUG --- platform/apple_download.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/apple_download.mm b/platform/apple_download.mm index 119091568b..79c5165162 100644 --- a/platform/apple_download.mm +++ b/platform/apple_download.mm @@ -60,7 +60,7 @@ static bool NeedToGenerateUrl(string const & url) long long fileSize = ftello(m_file); if (fileSize > 0) { - LOG(LINFO, ("Resuming download for file", m_params.m_fileToSave + DOWNLOADING_FILE_EXTENSION, + LOG(LDEBUG, ("Resuming download for file", m_params.m_fileToSave + DOWNLOADING_FILE_EXTENSION, "from position", fileSize)); NSString * val = [[NSString alloc] initWithFormat: @"bytes=%qi-", fileSize]; [request addValue:val forHTTPHeaderField:@"Range"];