removed Log.d

This commit is contained in:
Lorenzo Pichilli 2020-05-11 15:10:17 +02:00
parent b6b1e0e290
commit ecf8d45dde

View File

@ -45,8 +45,6 @@ public class MyCookieManager implements MethodChannel.MethodCallHandler {
String path = (String) call.argument("path"); String path = (String) call.argument("path");
String expiresDateString = (String) call.argument("expiresDate"); String expiresDateString = (String) call.argument("expiresDate");
Long expiresDate = (expiresDateString != null ? new Long(expiresDateString) : null); Long expiresDate = (expiresDateString != null ? new Long(expiresDateString) : null);
Log.d(LOG_TAG, expiresDateString + "");
Log.d(LOG_TAG, expiresDate + "");
Integer maxAge = (Integer) call.argument("maxAge"); Integer maxAge = (Integer) call.argument("maxAge");
Boolean isSecure = (Boolean) call.argument("isSecure"); Boolean isSecure = (Boolean) call.argument("isSecure");
MyCookieManager.setCookie(url, name, value, domain, path, expiresDate, maxAge, isSecure, result); MyCookieManager.setCookie(url, name, value, domain, path, expiresDate, maxAge, isSecure, result);
@ -103,8 +101,6 @@ public class MyCookieManager implements MethodChannel.MethodCallHandler {
cookieValue += ";"; cookieValue += ";";
Log.d(LOG_TAG, cookieValue + "");
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
cookieManager.setCookie(url, cookieValue, new ValueCallback<Boolean>() { cookieManager.setCookie(url, cookieValue, new ValueCallback<Boolean>() {
@Override @Override