diff --git a/android/src/main/java/com/pichillilorenzo/flutter_inappwebview/MyCookieManager.java b/android/src/main/java/com/pichillilorenzo/flutter_inappwebview/MyCookieManager.java index db8f37dd..02603bdc 100755 --- a/android/src/main/java/com/pichillilorenzo/flutter_inappwebview/MyCookieManager.java +++ b/android/src/main/java/com/pichillilorenzo/flutter_inappwebview/MyCookieManager.java @@ -45,8 +45,6 @@ public class MyCookieManager implements MethodChannel.MethodCallHandler { String path = (String) call.argument("path"); String expiresDateString = (String) call.argument("expiresDate"); Long expiresDate = (expiresDateString != null ? new Long(expiresDateString) : null); - Log.d(LOG_TAG, expiresDateString + ""); - Log.d(LOG_TAG, expiresDate + ""); Integer maxAge = (Integer) call.argument("maxAge"); Boolean isSecure = (Boolean) call.argument("isSecure"); MyCookieManager.setCookie(url, name, value, domain, path, expiresDate, maxAge, isSecure, result); @@ -103,8 +101,6 @@ public class MyCookieManager implements MethodChannel.MethodCallHandler { cookieValue += ";"; - Log.d(LOG_TAG, cookieValue + ""); - if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) { cookieManager.setCookie(url, cookieValue, new ValueCallback() { @Override