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

Commit

Permalink
[Android] Change log. (#2739)
Browse files Browse the repository at this point in the history
  • Loading branch information
YorkShen authored and lucky-chen committed Jul 22, 2019
1 parent 222cdce commit 9768a92
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions android/sdk/src/main/java/com/taobao/weex/utils/WXUtils.java
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

0 comments on commit 9768a92

Please sign in to comment.