Skip to content
This repository has been archived by the owner on Jun 3, 2021. It is now read-only.

[Android] Change log. #2739

Merged
merged 1 commit into from
Jul 22, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,10 @@
import android.support.annotation.Nullable;
import android.support.v4.util.LruCache;
import android.text.TextUtils;
import android.util.Log;
import com.taobao.weex.WXEnvironment;
import com.taobao.weex.WXSDKManager;
import com.taobao.weex.adapter.IWXConfigAdapter;
import com.taobao.weex.common.Constants;
import com.taobao.weex.common.WXConfig;

public class WXUtils {

Expand Down Expand Up @@ -306,7 +304,9 @@ public static int getInt(Object value) {
}
}
} catch (NumberFormatException nfe) {
WXLogUtils.e("Argument format error! value is " + value, nfe);
if (WXEnvironment.isApkDebugable()) {
WXLogUtils.w("The parameter format is not supported", nfe);
}
} catch (Exception e) {
WXLogUtils.e("Argument error! value is " + value, e);
}
Expand Down