From 532034e27ad36c021620cbbe5bf033f0924601ae Mon Sep 17 00:00:00 2001 From: Dan Field Date: Mon, 3 Feb 2020 10:07:59 -0800 Subject: [PATCH] Change NSLog to FML_DLOG (flutter/engine#16331) --- .../darwin/macos/framework/Source/FlutterTextInputPlugin.mm | 1 - 1 file changed, 1 deletion(-) diff --git a/engine/src/flutter/shell/platform/darwin/macos/framework/Source/FlutterTextInputPlugin.mm b/engine/src/flutter/shell/platform/darwin/macos/framework/Source/FlutterTextInputPlugin.mm index 8ead075c9ac..402534b6629 100644 --- a/engine/src/flutter/shell/platform/darwin/macos/framework/Source/FlutterTextInputPlugin.mm +++ b/engine/src/flutter/shell/platform/darwin/macos/framework/Source/FlutterTextInputPlugin.mm @@ -113,7 +113,6 @@ static NSString* const kMultilineInputType = @"TextInputType.multiline"; [self updateEditState]; } else { handled = NO; - NSLog(@"Unhandled text input method '%@'", method); } result(handled ? nil : FlutterMethodNotImplemented); }