[ios] Removed excess CLS_LOG's

This commit is contained in:
VladiMihaylenko 2018-05-23 18:10:42 +03:00 committed by yoksnod
parent b8b6953645
commit d14e599567
4 changed files with 4 additions and 9 deletions

View file

@ -65,14 +65,13 @@ NSString * const kPushDeviceTokenLogEvent = @"iOSPushDeviceToken";
+ (BOOL)handleURLPush:(NSDictionary *)userInfo
{
auto app = UIApplication.sharedApplication;
CLS_LOG(@"Handle url push");
CLS_LOG(@"User info: %@", userInfo);
if (app.applicationState != UIApplicationStateInactive)
return NO;
NSString * openLink = userInfo[@"openURL"];
CLS_LOG(@"Push's url: %@", openLink);
if (!openLink)
return NO;
NSURL * url = [NSURL URLWithString:openLink];
[app openURL:url];
return YES;

View file

@ -179,7 +179,7 @@ using Observers = NSHashTable<Observer>;
{
if (!query || query.length == 0)
return;
CLS_LOG(@"Save search text: %@\nInputLocale: %@", query, inputLocale);
string const locale = (!inputLocale || inputLocale.length == 0)
? [MWMSearch manager]->m_everywhereParams.m_inputLocale
: inputLocale.UTF8String;
@ -191,7 +191,7 @@ using Observers = NSHashTable<Observer>;
{
if (!query)
return;
CLS_LOG(@"Search text: %@\nInputLocale: %@", query, inputLocale);
MWMSearch * manager = [MWMSearch manager];
if (inputLocale.length != 0)
{

View file

@ -225,7 +225,6 @@ using Observers = NSHashTable<Observer>;
- (void)speakOneString:(NSString *)textToSpeak
{
CLS_LOG(@"Speak text: %@", textToSpeak);
AVSpeechUtterance * utterance = [AVSpeechUtterance speechUtteranceWithString:textToSpeak];
utterance.voice = self.speechVoice;
utterance.rate = AVSpeechUtteranceDefaultSpeechRate;

View file

@ -371,9 +371,6 @@ std::array<Class, 9> const kPreviewCells = {{[_MWMPPPTitle class],
if (!data)
return;
CLS_LOG(@"layoutInOpenState\tisOpen:%@\tLatitude:%@\tLongitude:%@", @(isOpen),
@(data.latLon.lat), @(data.latLon.lon));
[self.tableView update:^{
self.cachedBannerCell.state = isOpen ? MWMAdBannerStateDetailed : MWMAdBannerStateCompact;
}];