From 07b59dff2c1906a0c637a6088697bb449f6074b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Drago=C8=99=20Tiselice?= Date: Mon, 22 Aug 2016 14:00:23 -0700 Subject: [PATCH] Removed custom service definition logging. (#2961) Since this functionality will be removed soon, this patch removes the logging in order not to hinder the iOS development experience. --- .../ios/framework/Source/FlutterDynamicServiceLoader.mm | 4 ---- 1 file changed, 4 deletions(-) diff --git a/sky/shell/platform/ios/framework/Source/FlutterDynamicServiceLoader.mm b/sky/shell/platform/ios/framework/Source/FlutterDynamicServiceLoader.mm index ffae410b0fe..90b00dd6e4b 100644 --- a/sky/shell/platform/ios/framework/Source/FlutterDynamicServiceLoader.mm +++ b/sky/shell/platform/ios/framework/Source/FlutterDynamicServiceLoader.mm @@ -103,8 +103,6 @@ _services = [[NSMutableDictionary alloc] init]; [self populateServiceDefinitions]; - - LOG(INFO) << _services.count << " custom service definitions registered"; } return self; @@ -126,8 +124,6 @@ ofType:@"json"]; if (definitionsPath.length == 0) { - LOG(INFO) << "Could not find the service definitions manifest. No custom " - "services will be available."; return; }