Add some logging when the webview dev setting changes

Bug: 9773865

This will not be visible in shipping config, so shouldn't be a major
source of log spam.

Change-Id: If09734b70e59aeab87c6dddee72212aa6748505f
This commit is contained in:
Jonathan Dixon
2013-07-30 16:21:32 -07:00
parent d8501485e3
commit cb64bb4b16

View File

@@ -82,6 +82,8 @@ public final class WebViewFactory {
public static void setUseExperimentalWebView(boolean enable) {
SystemProperties.set(WebViewFactory.WEBVIEW_EXPERIMENTAL_PROPERTY,
enable ? "true" : "false");
Log.i(LOGTAG, "Use Experimental WebView changed: "
+ SystemProperties.get(WebViewFactory.WEBVIEW_EXPERIMENTAL_PROPERTY, ""));
}
/** @hide */