From 25accb2d4d98b38d21f3ed9b1cf5dfef81016ad6 Mon Sep 17 00:00:00 2001 From: levlam Date: Mon, 14 Sep 2020 19:06:51 +0300 Subject: [PATCH] Silence expected warning. GitOrigin-RevId: 82f914b98914abfdecc2aa7d4dfc55ea6ef0d0ed --- td/telegram/files/FileManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/td/telegram/files/FileManager.cpp b/td/telegram/files/FileManager.cpp index 2c69466c4..7b4573aab 100644 --- a/td/telegram/files/FileManager.cpp +++ b/td/telegram/files/FileManager.cpp @@ -1160,7 +1160,7 @@ Result FileManager::register_file(FileData &&data, FileLocationSource fi auto status = check_local_location(data.local_.full(), data.size_, skip_file_size_checks); if (status.is_error()) { - LOG(WARNING) << "Invalid " << data.local_.full() << ": " << status << " from " << source; + LOG(INFO) << "Invalid " << data.local_.full() << ": " << status << " from " << source; data.local_ = LocalFileLocation(); if (data.remote_.type() == RemoteFileLocation::Type::Partial) { data.remote_ = {};