diff --git a/example/ios/README.md b/example/ios/README.md index 6104bcdc..168f0328 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 3673887d..a087e364 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; }