From 035e4a69ed2150c26414d5bd4848210474bf9de8 Mon Sep 17 00:00:00 2001 From: levlam Date: Wed, 31 Oct 2018 15:15:16 +0300 Subject: [PATCH] Improve iOS README. GitOrigin-RevId: 5141bd0bb172f72c7cda70dba249d4c3f0d90849 --- example/ios/README.md | 2 ++ td/telegram/Client.cpp | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/example/ios/README.md b/example/ios/README.md index 6104bcdc9..168f0328d 100644 --- a/example/ios/README.md +++ b/example/ios/README.md @@ -27,6 +27,8 @@ cd /example/ios ./build-openssl.sh ``` Here we use scripts from [Python Apple support](https://github.com/pybee/Python-Apple-support), but any other OpenSSL builds should work too. +[Python Apple support](https://github.com/pybee/Python-Apple-support) has known problems with spaces in the path to the current directory, so +you need to ensure that there is no spaces in the path. Built libraries should be stored in `third_party/openssl/`, because the next script will rely on this location. * Build TDLib for iOS, watchOS, tvOS and macOS: ``` diff --git a/td/telegram/Client.cpp b/td/telegram/Client.cpp index 3673887dc..a087e3643 100644 --- a/td/telegram/Client.cpp +++ b/td/telegram/Client.cpp @@ -163,7 +163,7 @@ class Client::Impl final { auto response = receive_unlocked(timeout); is_locked = receive_lock_.exchange(false); CHECK(is_locked); - LOG(td_requests) << "End to wait for updates, returning object " << response.id << ' ' << response.object.get(); + VLOG(td_requests) << "End to wait for updates, returning object " << response.id << ' ' << response.object.get(); return response; }