Log a warning when a navigation is blocked by the whitelist

This commit is contained in:
Andrew Grieve 2015-02-27 15:45:37 -05:00
parent f1d093548e
commit c237a1c0d2

View File

@ -608,6 +608,7 @@ public class CordovaWebViewImpl implements CordovaWebView {
}
return true;
}
LOG.w(TAG, "Blocked navigation because URL was not whitelisted: " + url);
// Block by default
return true;
}