Skip to content

Commit f797e51

Browse files
authored
[desktop_webview_window] remove debug output (#201)
1 parent ea54484 commit f797e51

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

packages/desktop_webview_window/windows/web_view_window_plugin.cc

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -235,12 +235,10 @@ void WebviewWindowPlugin::HandleMethodCall(
235235
auto* arguments = std::get_if<flutter::EncodableMap>(method_call.arguments());
236236
auto window_id = arguments->at(flutter::EncodableValue("viewId")).LongValue();
237237
if (!windows_.count(window_id)) {
238-
std::cout << "webview window id not found" << std::endl;
239238
result->Error("0", "can not find webview window for id");
240239
return;
241240
}
242241
if (!windows_[window_id]->GetWebView()) {
243-
std::cout << "Webview not ready" << std::endl;
244242
result->Error("0", "webview window not ready");
245243
return;
246244
}

0 commit comments

Comments
 (0)