diff --git a/shell/platform/darwin/ios/framework/Source/FlutterDartVMServicePublisher.mm b/shell/platform/darwin/ios/framework/Source/FlutterDartVMServicePublisher.mm index c8083366af5ab..e59bed6c0c255 100644 --- a/shell/platform/darwin/ios/framework/Source/FlutterDartVMServicePublisher.mm +++ b/shell/platform/darwin/ios/framework/Source/FlutterDartVMServicePublisher.mm @@ -80,6 +80,8 @@ - (void)stopService { } - (void)publishServiceProtocolPort:(NSURL*)url { + // TODO(vashworth): Remove once done debugging https://github.com/flutter/flutter/issues/129836 + FML_LOG(INFO) << "Publish Service Protocol Port"; DNSServiceFlags flags = kDNSServiceFlagsDefault; #if TARGET_IPHONE_SIMULATOR // Simulator needs to use local loopback explicitly to work. diff --git a/shell/platform/darwin/ios/framework/Source/FlutterEngine.mm b/shell/platform/darwin/ios/framework/Source/FlutterEngine.mm index 1130dcccf7efe..8f67ec1b8b1db 100644 --- a/shell/platform/darwin/ios/framework/Source/FlutterEngine.mm +++ b/shell/platform/darwin/ios/framework/Source/FlutterEngine.mm @@ -871,6 +871,8 @@ - (BOOL)createShell:(NSString*)entrypoint FML_LOG(ERROR) << "Could not start a shell FlutterEngine with entrypoint: " << entrypoint.UTF8String; } else { + // TODO(vashworth): Remove once done debugging https://github.com/flutter/flutter/issues/129836 + FML_LOG(INFO) << "Enabled VM Service Publication: " << settings.enable_vm_service_publication; [self setupShell:std::move(shell) withVMServicePublication:settings.enable_vm_service_publication]; if ([FlutterEngine isProfilerEnabled]) {